31 lines
		
	
	
		
			640 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			640 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
| worker_processes 1;
 | |
| 
 | |
| events {
 | |
|     worker_connections 1024;
 | |
| }
 | |
| 
 | |
| http {
 | |
|     server {
 | |
|         listen 8080;
 | |
| 
 | |
|          types {
 | |
|             text/html html htm;
 | |
|             text/css css;
 | |
|             application/javascript js;
 | |
|             image/jpeg jpg jpeg;
 | |
|             image/png png;
 | |
|             image/svg+xml svg;
 | |
|         }
 | |
| 
 | |
|         location /static/ {
 | |
|             alias /app/static/;
 | |
|         }
 | |
| 
 | |
|         location / {
 | |
|             proxy_pass http://pushpin:7999;
 | |
|             proxy_set_header Host $host;
 | |
|             proxy_set_header X-Real-IP $remote_addr;
 | |
|             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 | |
|         }
 | |
|     }
 | |
| } | 
