Skip to content

Instantly share code, notes, and snippets.

@cjus
Last active July 12, 2023 14:59
AngularJS Nginx and html5Mode
server {
server_name yoursite.com;
root /usr/share/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
@mattisebastian
Copy link

You guys saved me a lot of time, thank you!

@royge
Copy link

royge commented Oct 25, 2018

Thanks @jpduckwo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment