basic nginx.conf
This commit is contained in:
		
							parent
							
								
									f790f567b8
								
							
						
					
					
						commit
						7624198b79
					
				
							
								
								
									
										52
									
								
								nginx.conf
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										52
									
								
								nginx.conf
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,52 @@ | ||||
| ####### | ||||
| ### NGINX basic configuration | ||||
| ####### | ||||
| 
 | ||||
| user www-data; | ||||
| worker_processes auto; | ||||
| pid /var/run/nginx.pid; | ||||
| 
 | ||||
| error_log /var/log/nginx/error.log warn; | ||||
| 
 | ||||
| # include any dynamically linked modules | ||||
| include /etc/nginx/modules/*.conf; | ||||
| 
 | ||||
| events { | ||||
|     worker_connections 1024; | ||||
|     multi_accept off; | ||||
|     use epoll; | ||||
| } | ||||
| 
 | ||||
| http { | ||||
|     server_names_hash_bucket_size 64; | ||||
|     default_type text/plain; | ||||
|     charset utf-8; | ||||
| 
 | ||||
|     include /etc/nginx/mime.types; | ||||
| 
 | ||||
|     # include enabled configuration options from cond.d/enabled/*.conf | ||||
|     include /etc/nginx/conf.d/enabled/*.conf; | ||||
| 
 | ||||
|     # set default index options for all sites | ||||
|     index index.html index.htm; | ||||
| 
 | ||||
|     # logging options | ||||
|     log_format main '$remote_addr - $remote_user [$time_local] $request ' | ||||
|         '$status $body_bytes_sent "$http_referer" ' | ||||
|         '"$http_user_agent" "$http_x_forwarded_for" ' | ||||
|         '"$host" server="$server_name" ' | ||||
|         'reqtime="$request_time" ' | ||||
|         'uaddr="$upstream_addr" ustat="$upstream_status" ' | ||||
|         'utime="$upstream_response_time" ulen="$upstream_response_length" ' | ||||
|         'cache="$upstream_cache_status"'; | ||||
| 
 | ||||
|     # turn logging off by default (performance reasons, uncomment for | ||||
|     # troubleshooting) | ||||
|     #access_log /var/log/nginx/access.log main; | ||||
|     access_log off; | ||||
| 
 | ||||
|     server_tokens off; | ||||
| 
 | ||||
|     # include enabled server blocks from /etc/nginx/enabledSites/*.conf | ||||
|     include /etc/nginx/enabledSites/*.conf; | ||||
| } | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user