mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			582 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			582 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
user humbug;
 | 
						|
 | 
						|
 | 
						|
# The rest of the file is the non-commented part of the Debian default config.
 | 
						|
 | 
						|
worker_processes 4;
 | 
						|
pid /var/run/nginx.pid;
 | 
						|
 | 
						|
events {
 | 
						|
    worker_connections 768;
 | 
						|
}
 | 
						|
 | 
						|
http {
 | 
						|
    sendfile on;
 | 
						|
    tcp_nopush on;
 | 
						|
    tcp_nodelay on;
 | 
						|
    keepalive_timeout 65;
 | 
						|
    types_hash_max_size 2048;
 | 
						|
 | 
						|
    include /etc/nginx/mime.types;
 | 
						|
    default_type application/octet-stream;
 | 
						|
 | 
						|
    access_log /var/log/nginx/access.log;
 | 
						|
    error_log /var/log/nginx/error.log;
 | 
						|
 | 
						|
    gzip on;
 | 
						|
    gzip_disable "msie6";
 | 
						|
 | 
						|
    include /etc/nginx/conf.d/*.conf;
 | 
						|
    include /etc/nginx/sites-enabled/*;
 | 
						|
}
 |