Skip to content

Instantly share code, notes, and snippets.

@wohugb
Forked from cjus/sample-nginx.conf
Created May 3, 2017 08:19
Show Gist options
  • Save wohugb/3afc24e779c6dd7e058bb1d253146dc5 to your computer and use it in GitHub Desktop.
Save wohugb/3afc24e779c6dd7e058bb1d253146dc5 to your computer and use it in GitHub Desktop.
AngularJS Nginx and html5Mode
server {
server_name yoursite.com;
root /usr/share/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment