Skip to content

Instantly share code, notes, and snippets.

View aarmora's full-sized avatar

Jordan Hansen aarmora

View GitHub Profile
@cjus
cjus / sample-nginx.conf
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;
}
}