Skip to content

Instantly share code, notes, and snippets.

@budasuyasa
Created July 17, 2021 11:27
Show Gist options
  • Save budasuyasa/c3f65f27b97245ae987e639356d7f3ef to your computer and use it in GitHub Desktop.
Save budasuyasa/c3f65f27b97245ae987e639356d7f3ef to your computer and use it in GitHub Desktop.
Nginx Reverse Proxy
server {
listen 80;
server_name domainsaya.com www.domainsaya.com;
gzip on;
client_max_body_size 50M;
location / {
proxy_pass http://localhost:8002;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment