nginx.conf 306 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 server { listen 80; server_name localhost; access_log /var/log/nginx/access.log.1; error_log /var/log/nginx/error.log.1; location /api { proxy_pass http://172.28.0.3; } location / { root /var/www/html/public; index index.html; } }