Skip to content

Instantly share code, notes, and snippets.

@TangMonk
Last active February 26, 2023 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TangMonk/3d53c887f1f250efb47ce30dd5004b07 to your computer and use it in GitHub Desktop.
Save TangMonk/3d53c887f1f250efb47ce30dd5004b07 to your computer and use it in GitHub Desktop.
nginx rails proxy forward
upstream app {
server 127.0.0.1:3000;
}
server {
listen 3003 default_server;
root /home/david/uniswap_monitor_admin/public;
server_name _;
try_files $uri/index.html $uri @app;
location @app {
proxy_pass http://app;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment