/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; } } }