1、nginx的windows安装
官网下载nginx安装包,解压后,进入nginx目录。
直接双节运行nginx.exe即可,此时任务管理器会有相应的进程。
2、配置conf文件
server {
listen 8600;
server_name localhost;
location / {
root D:\mogu_blog\data;
index index.html index.htm;
}
}
3、访问地址
http://localhost:8600
要是报403,一般是没有index.html文件所致。
网友评论