#user nobody; worker_processes 1; # 设置工作进程数,通常设置为CPU核心数 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; # 设置单个工作进程可以允许的最大连接数 } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; # 设置长连接的超时时间 #gzip on; # 开启gzip压缩 server { # 配置一个虚拟主机 listen 80; # 监听80端口,可以改为其他端口 server_name localhost; # 设置域名,可以设置为你的网站域名 #charset koi8-r; #access_log logs/host.access.log main; location / { # 配置一个location,用于处理网站根目录下的请求 root html; # 设置网站根目录的路径 index index.html index.htm; # 设置默认的首页文件 } #error_page 404 /404.html; # 设置404错误页面 # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; # 设置其他错误页面 location = /50x.html { # 配置一个location,用于处理错误页面请求 root html; # 设置错误页面的路径 } # proxy the PHP scripts to Apache listening on 127.0.0.1:8080 # #location ~ \.php$ { # 配置一个location,用于处理PHP脚本请求(可选) # proxy_pass http://127.0.0.1:8080; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # 配置一个location,用于处理PHP脚本请求(可选) # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # 配置一个location,用于禁止访问.htaccess文件(可选) # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # 可以配置多个server块来定义多个虚拟主机(可选) # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} }

(图片来源网络,侵删)
上述配置只是一个基本示例,你可以根据自己的需求进行修改和扩展,你可以添加更多的server
块来定义多个虚拟主机,或者修改location
块来处理不同类型的请求。
如果你打算使用Nginx作为反向代理服务器或者处理PHP等动态内容,你还需要进行额外的配置,你可以取消注释并修改相关的location ~ \.php$
块来启用FastCGI支持。
请确保将配置文件保存为nginx.conf
,并将其放置在Nginx安装目录下的conf
文件夹中,你可以使用nginx -t
命令测试配置文件的语法是否正确,并使用nginx -s reload
命令重新加载配置文件以使更改生效。
文章版权声明:除非注明,否则均为论主机评测网原创文章,转载或复制请以超链接形式并注明出处。