Skip to content

Instantly share code, notes, and snippets.

@wookets
Created September 10, 2019 15:19
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 wookets/715c7f9a6f65dab7b7ff4274dea06265 to your computer and use it in GitHub Desktop.
Save wookets/715c7f9a6f65dab7b7ff4274dea06265 to your computer and use it in GitHub Desktop.
Nginx: static vuejs conf
server {
listen 8080;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment