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.
52 lines
977 B
52 lines
977 B
worker_processes auto; |
|
worker_cpu_affinity auto; |
|
worker_rlimit_nofile 65535; |
|
|
|
error_log logs/error.log warn; |
|
|
|
pid logs/nginx.pid; |
|
|
|
events { |
|
worker_connections 1024; |
|
use epoll; |
|
multi_accept on; |
|
} |
|
|
|
http { |
|
|
|
include mime.types; |
|
default_type application/octet-stream; |
|
|
|
index index.html index.htm; |
|
|
|
log_format main '$remote_addr - $remote_user [$time_local] $status ' |
|
'"$request" $body_bytes_sent "$http_referer" ' |
|
'"$http_user_agent" "$http_x_forwarded_for"'; |
|
|
|
sendfile on; |
|
|
|
#tcp_nopush on; |
|
|
|
#keepalive_timeout 0; |
|
keepalive_timeout 65; |
|
|
|
#gzip on; |
|
|
|
server { |
|
listen 127.0.0.1:8001; |
|
listen 127.0.0.1:8002 http2; |
|
server_name yourserver.com; |
|
|
|
charset utf-8; |
|
|
|
access_log logs/yourserver.access.log main; |
|
|
|
location / { |
|
root /var/www/html; |
|
} |
|
|
|
error_page 404 /404.html; |
|
|
|
error_page 500 502 503 504 /50x.html; |
|
} |
|
}
|
|
|