nginx windows 下配置
2021-06-04 02:03
标签:err red 错误 1 ref href charset eve discovery amp 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 服务。 World Wide Web 发布服务 你想继续此操作吗? (Y/N) [N]: Y 并禁用服务 Sc config http start= disabled 停止后重启电脑 发现80端口正常了 启动nginx nginx.exe 启动成功页面 配置nginx 打开 D:\nginx-1.16.0\conf\nginx.conf #error_log logs/error.log; #pid logs/nginx.pid; #log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘ #access_log logs/access.log main; sendfile on; #keepalive_timeout 0; #gzip on; #charset koi8-r; #access_log logs/host.access.log main; location / { #error_page 404 /404.html; # redirect server error pages to the static page /50x.html server { #charset koi8-r; #access_log logs/host.access.log main; location / { #error_page 404 /404.html; # redirect server error pages to the static page /50x.html } } 配置完成之后 nginx -s reload 之后就可以正常访问了 启动 net start http C:\WINDOWS\system32>net start http 无法启动服务,原因可能是已被禁用或与其相关联的设备没有启动。 需要修改服务配置 sc config http start= demand & net start http 服务正常启动 nginx windows 下配置 标签:err red 错误 1 ref href charset eve discovery amp 原文地址:https://www.cnblogs.com/xiaoxiangpaou/p/10880513.html
停止 HTTP Service 服务也会停止这些服务。
SSDP Discovery
Print Spooler
#user nobody;
worker_processes 1;
#error_log logs/error.log notice;
#error_log logs/error.log info;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
# ‘$status $body_bytes_sent "$http_referer" ‘
# ‘"$http_user_agent" "$http_x_forwarded_for"‘;
#tcp_nopush on;
keepalive_timeout 65;
upstream xxx.xxx.com {
server 127.0.0.1:81;
}
server {
listen 80;
server_name localhost;
proxy_pass http://xxx.xxx.com;
}
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
listen 80;
server_name localhost;
root html;
index index.html index.htm;
}
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
发生系统错误 1058。