Skip to content

Instantly share code, notes, and snippets.

@tranghaviet
Created September 27, 2018 04:35
Show Gist options
  • Save tranghaviet/3ab8078acdb0bb72fd9cc8b38413b7bc to your computer and use it in GitHub Desktop.
Save tranghaviet/3ab8078acdb0bb72fd9cc8b38413b7bc to your computer and use it in GitHub Desktop.
Nginx config for vue js build files
server {
# port listening
listen 8090;
server_name _;
root /path/to/dist/;
index index.html;
location / {
try_files $uri /index.html =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment