Skip to content

Instantly share code, notes, and snippets.

@Kannndev
Last active August 28, 2020 03:32
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 Kannndev/2ce48dc3ff172dd19192c5f1474b47b0 to your computer and use it in GitHub Desktop.
Save Kannndev/2ce48dc3ff172dd19192c5f1474b47b0 to your computer and use it in GitHub Desktop.
Nginx Conf with base route aws fix
server {
listen 8081;
server_name localhost;
root /usr/local/var/www;
index /ui/index.html;
location /ui {
try_files $uri $uri/ /ui/index.html$is_args$args;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment