Skip to content

Instantly share code, notes, and snippets.

@Deiru2k
Created November 22, 2015 18:41
Show Gist options
  • Save Deiru2k/1e14484c7898d5f6fc1f to your computer and use it in GitHub Desktop.
Save Deiru2k/1e14484c7898d5f6fc1f to your computer and use it in GitHub Desktop.
NGINX SPA
server {
listen 80;
root "/var/www/dev.kancolle.io/dist";
server_name "dev.kancolle.io";
location / {
try_files $uri /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment