Skip to content

Instantly share code, notes, and snippets.

@nibral
Last active December 1, 2018 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nibral/8669383e9ae11b362bc75f0ec130947a to your computer and use it in GitHub Desktop.
Save nibral/8669383e9ae11b362bc75f0ec130947a to your computer and use it in GitHub Desktop.
reverse proxy
server {
listen 80;
server_name example.com;
charset UTF-8;
auth_basic "Login message";
auth_basic_user_file /path/to/.htpasswd;
location / {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:3000/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment