Spaces:
Running
Running
| # vim: filetype=nginx | |
| server { | |
| listen 80; | |
| server_name _; | |
| gzip on; | |
| gzip_comp_level 4; | |
| gzip_types text/plain text/css application/json | |
| application/x-javascript text/xml application/xml | |
| application/xml+rss text/javascript; | |
| location / { | |
| alias /usr/share/nginx/html/; | |
| try_files $uri /index.html; | |
| } | |
| } | |