1.下載nginx
http://nginx.org/en/download.html
2.查看系統80端口占用情況
netstat -ano |findstr "80"
如果是其他軟件占了端口號 直接關掉進程就OK
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4
如果端口占用是系統
net stop http 停止http 服務
下面的服務依賴於 HTTP Service 服務。
停止 HTTP Service 服務也會停止這些服務。
World Wide Web 發布服務
SSDP Discovery
Print Spooler
你想繼續此操作嗎? (Y/N) [N]: Y
並禁用服務
Sc config http start= disabled
停止后重啟電腦 發現80端口正常了
啟動nginx nginx.exe

啟動成功頁面

配置nginx
打開 D:\nginx-1.16.0\conf\nginx.conf
#user nobody;
worker_processes 1;
#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;
upstream xxx.xxx.com {
server 127.0.0.1:81;
}
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://xxx.xxx.com;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
配置完成之后 nginx -s reload

之后就可以正常訪問了
啟動 net start http
C:\WINDOWS\system32>net start http
發生系統錯誤 1058。
無法啟動服務,原因可能是已被禁用或與其相關聯的設備沒有啟動。
需要修改服務配置
sc config http start= demand & net start http

服務正常啟動
