Skip to content

Instantly share code, notes, and snippets.

@phainamikaze
Created December 29, 2020 17:26
Show Gist options
  • Save phainamikaze/2d6c9291d63dda876fdbcdeefae983f9 to your computer and use it in GitHub Desktop.
Save phainamikaze/2d6c9291d63dda876fdbcdeefae983f9 to your computer and use it in GitHub Desktop.
nginx serv static content single page webapp
server {
listen 80;
listen [::]:80;
root /var/www/html;
index index.html;
server_name my.domain.com;
location / {
try_files $uri $uri/ /index.html?$args;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment