You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
536 B
23 lines
536 B
user www-data; |
|
worker_processes auto; |
|
pid /run/nginx.pid; |
|
error_log /dev/stderr warn; |
|
|
|
events { |
|
worker_connections 1024; |
|
} |
|
|
|
http { |
|
include /etc/nginx/mime.types; |
|
default_type application/octet-stream; |
|
sendfile on; |
|
keepalive_timeout 65; |
|
server_tokens off; |
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] "$request" ' |
|
'$status $body_bytes_sent "$http_referer" ' |
|
'"$http_user_agent"'; |
|
access_log /dev/stdout main; |
|
|
|
include /etc/nginx/conf.d/*.conf; |
|
}
|
|
|