Skip to content

Instantly share code, notes, and snippets.

@Kannndev
Created August 27, 2020 17:45
Show Gist options
  • Save Kannndev/f72ef4861d79fa091c1763a34e3a5699 to your computer and use it in GitHub Desktop.
Save Kannndev/f72ef4861d79fa091c1763a34e3a5699 to your computer and use it in GitHub Desktop.
Nginx Conf
server {
listen 8081;
server_name localhost;
root /usr/local/var/www/ui;
index index.html;
location /ui {
try_files $uri $uri/ /index.html$is_args$args;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment