Created
September 27, 2018 04:35
-
-
Save tranghaviet/3ab8078acdb0bb72fd9cc8b38413b7bc to your computer and use it in GitHub Desktop.
Nginx config for vue js build files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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