69 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
user www-data;
 | 
						|
worker_processes 2;
 | 
						|
pid /var/run/nginx.pid;
 | 
						|
daemon off;
 | 
						|
 | 
						|
events {
 | 
						|
	worker_connections 512;
 | 
						|
	# multi_accept on;
 | 
						|
}
 | 
						|
 | 
						|
http {
 | 
						|
	sendfile on;
 | 
						|
	tcp_nopush on;
 | 
						|
	tcp_nodelay on;
 | 
						|
	keepalive_timeout 65;
 | 
						|
	types_hash_max_size 2048;
 | 
						|
	server_tokens off;
 | 
						|
	port_in_redirect on;
 | 
						|
 | 
						|
	server_names_hash_bucket_size 128;
 | 
						|
	server_name_in_redirect off;
 | 
						|
 | 
						|
	client_max_body_size 60m;
 | 
						|
 | 
						|
	include /etc/nginx/mime.types;
 | 
						|
	default_type application/octet-stream;
 | 
						|
 | 
						|
	send_timeout 300;
 | 
						|
	client_body_timeout   300;
 | 
						|
	client_header_timeout 300;
 | 
						|
 | 
						|
	access_log /logs/access.log;
 | 
						|
	error_log /logs/error.log;
 | 
						|
 | 
						|
	gzip on;
 | 
						|
	gzip_disable "msie6";
 | 
						|
	gzip_vary on;
 | 
						|
	gzip_proxied any;
 | 
						|
	gzip_comp_level 6;
 | 
						|
	gzip_buffers 16 8k;
 | 
						|
	gzip_http_version 1.1;
 | 
						|
	gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
 | 
						|
 | 
						|
	upstream django {
 | 
						|
		server 127.0.0.1:8000;
 | 
						|
	}
 | 
						|
 | 
						|
	server {
 | 
						|
		listen 80 default;
 | 
						|
		server_name localhost;
 | 
						|
		location / {
 | 
						|
			proxy_pass http://django;
 | 
						|
			include proxy_params;
 | 
						|
		}
 | 
						|
		location /media/ {
 | 
						|
			root /data;
 | 
						|
			expires max;
 | 
						|
			access_log off;
 | 
						|
		}
 | 
						|
		location /static/ {
 | 
						|
			root /data;
 | 
						|
			expires max;
 | 
						|
			access_log off;
 | 
						|
		}
 | 
						|
		location ~ /\.ht { deny  all; }
 | 
						|
		location ~ /\.hg { deny  all; }
 | 
						|
		location ~ /\.svn { deny  all; }
 | 
						|
	}
 | 
						|
}
 |