Skip to content

Instantly share code, notes, and snippets.

@xeptore
Created March 28, 2019 07:08
Show Gist options
  • Save xeptore/12b4774809b724941a145d29692a203c to your computer and use it in GitHub Desktop.
Save xeptore/12b4774809b724941a145d29692a203c to your computer and use it in GitHub Desktop.
Nginx Single Page App Configuration
server {
# ...
root /var/www/your_app_directory;
# ...
location / {
try_files $uri /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment