Skip to content

Instantly share code, notes, and snippets.

@anoochit
Created April 13, 2022 04:08
Show Gist options
  • Save anoochit/bc51920eda1b91f187e808f18d27b721 to your computer and use it in GitHub Desktop.
Save anoochit/bc51920eda1b91f187e808f18d27b721 to your computer and use it in GitHub Desktop.
nginx reverse proxy script for vue frontend for mars blockchain
..
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
#try_files $uri $uri/ =404;
proxy_pass http://localhost:3000/;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment