Skip to content

Instantly share code, notes, and snippets.

View leonetosoft's full-sized avatar
🎯
Concentrando

Leonardo Neto leonetosoft

🎯
Concentrando
  • CEO NYMERIA - Desenvolvimento de Sistemas
  • Dourados, MS
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;
}
}