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.
39 lines
901 B
39 lines
901 B
1 year ago
|
worker_processes 1;
|
||
|
#工作模式以及连接数上限
|
||
|
events {
|
||
|
#accept_mutex on; #设置网路连接序列化,防止惊群现象发生,默认为on
|
||
|
#multi_accept on; #设置一个进程是否同时接受多个网络连接,默认为off
|
||
|
#use epoll; #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
|
||
|
worker_connections 1024;#最大连接数,默认为512
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
|
||
|
include mime.types;
|
||
|
|
||
|
default_type application/octet-stream;
|
||
|
|
||
|
sendfile on;
|
||
|
|
||
|
keepalive_timeout 65;
|
||
|
|
||
|
server {
|
||
|
|
||
|
listen 80;
|
||
|
|
||
|
server_name localhost;
|
||
|
|
||
|
location / {
|
||
|
|
||
|
root /usr/share/nginx/html;
|
||
|
|
||
|
index index.html index.htm;
|
||
|
}
|
||
|
|
||
|
error_page 500 502 503 504 /50x.html;
|
||
|
location = /50x.html {
|
||
|
root html;
|
||
|
}
|
||
|
}
|
||
|
}
|