Skip to content
Snippets Groups Projects
nginx.conf.template 197 B
Newer Older
  • Learn to ignore specific revisions
  • server {
        # staging server is listening on the port 8080
        listen 80   ;
        server_name _;
        root /usr/share/nginx/html/;
    
        location / {
            try_files $uri$args /index.html;
        }
    }