下载nginx

windows上是个压缩包

解压后, 使用命令行输入 nginx 进行启动

nginx -s stop 进行停止
nginx -s status 查看状态
可以配置一下环境变量

主要是配置文件, windows的nginx配置文件在 conf文件夹下

在http标签下 添加如下配置

其他地方不用更改,保持原样即可,
以下是整个配置文件的参考

#usernobody;worker_processes1;#error_loglogs/error.log;#error_loglogs/error.lognotice;#error_loglogs/error.loginfo;#pidlogs/nginx.pid;events {worker_connections1024;}http {include mime.types;default_typeapplication/octet-stream;#log_formatmain'$remote_addr - $remote_user [$time_local] "$request" '#'$status $body_bytes_sent "$http_referer" '#'"$http_user_agent" "$http_x_forwarded_for"';#access_loglogs/access.logmain;sendfileon;#tcp_nopush on;#keepalive_timeout0;keepalive_timeout65;#gzipon;server {listen 80;server_name example.com;root G:\media;index index.html;location / {try_files $uri $uri/ =404;}}}