Nginx 最小配置文件解析
Nginx •
•
401次阅读
/usr/local/nginx/conf/nginx.conf
worker_processes 1;
events {
worker_connections 1024;
}
http {
server_tokens off;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include extra/*.conf;
server {
listen 5414;
server_name localhost;
location / {
root /www/www;
index index.html index.htm;
}
}
server {
listen 80;
server_name c.cdzth.top;
location / {
root /www/www;
#index index.html index.htm;
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
}
}
}
所有的努力,不是为了让别人觉得你了不起,而是为了能让自己打心眼里看得起自己。