Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	File size: 359 Bytes
			
			| d7291ef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 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;
    }
}
 | 
