Skip to content
Snippets Groups Projects
nginx.conf 159 B
Newer Older
  • Learn to ignore specific revisions
  • François Agneray's avatar
    François Agneray committed
    server {
        listen       80;
        server_name  localhost;
    
        root /usr/share/nginx/html;
    
        location / {
            try_files $uri $uri/ /index.html;
        }
    }