假设nginx的目录结构如下所示:
复制代码代码示例:
nginx-0.8.54
│ nginx.exe //主程序 │ ├─conf │ │ fastcgi_params │ │ koi-utf │ │ koi-win │ │ mime.types │ │ nginx.conf //核心配置文件 │ │ win-utf │ │ │ └─vhost //虚拟主机目录 │ www.jbxue.conf │ news.jbxue.conf │ ├─contrib │ │ geo2nginx.pl │ │ README │ │ │ └─unicode2nginx │ koi-utf │ unicode-to-nginx.pl │ win-utf │ ├─docs │ CHANGES │ CHANGES.ru │ LICENSE │ OpenSSL.LICENSE │ PCRE.LICENCE │ README │ zlib.LICENSE │ ├─html │ 50x.html │ index.html │ ├─logs │ access.log │ error.log │ nginx.pid │ └─temp ├─client_body_temp ├─fastcgi_temp └─proxy_temp
步骤1,
编辑后的nginx.conf 配置文件内容如下:
复制代码代码示例:
#user nobody;
#error_log logs/error.log; #pid logs/nginx.pid;
events {
http { keepalive_timeout 65; #gzip on;
include vhost/*.conf; #加载vhost目录下的虚拟主机配置文件
步骤2,
root 节用来配置网站文件路径,路径格式:d:/www/itnetcn;
复制代码代码示例:
server {
location / {
error_page 500 502 503 504 /50x.html;
附,windows下nginx管理脚本。
复制代码代码示例:
Rem 提供Windows下nginx的启动,重启,关闭功能
cls
另外,别名超长的解决办法,需要在http段加入: |