Skip to content

Instantly share code, notes, and snippets.

@flaugabriel
Last active June 5, 2020 19:46
Show Gist options
  • Save flaugabriel/921327c76d29d61c34e1550f6de423d2 to your computer and use it in GitHub Desktop.
Save flaugabriel/921327c76d29d61c34e1550f6de423d2 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name app.4business.tech www.app.4business.tech;
return 301 http://app.4business.tech$request_uri;
}
server {
server_name app.4business.tech;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment