Skip to content

Instantly share code, notes, and snippets.

@luissquall
Last active September 13, 2021 13:40
Show Gist options
  • Save luissquall/d3e443a82ae01e6cc41b92b44b4ac817 to your computer and use it in GitHub Desktop.
Save luissquall/d3e443a82ae01e6cc41b92b44b4ac817 to your computer and use it in GitHub Desktop.
server {
listen 80;
listen [::]:80;
server_name {{ domain }};
#client_max_body_size 10M;
access_log /var/log/nginx/{{ domain }}.access.log;
error_log /var/log/nginx/{{ domain }}.error.log;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:{{ service_port }}/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment