发布的服务器打不开
来源:13-2 编译打包-项目编译打包及node服务测试
qq_慕函数5529610
2020-06-22
上传了图片打不开,…
server {
listen 80;
# server_name 47.93.26.237;
# root /music/dist/;
# Load configuration files for the default server block.
# include /etc/nginx/default.d/*.conf;
location / {
# index index.html index.htm;
rewrite ^/ https://github.com/Xuanhee;
# proxy_pass http://127.0.0.1:9000/;
}
location /music/ {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://127.0.0.1:9000/;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
老师,配置折腾了一晚上,结果配置完地址打不开-
http://47.93.26.237/ 服务器是这个 nginx配置完了,买了服务器,买了个域名,
现在这个地址打开是无法访问- - 不知道怎么回事了
写回答
2回答
-
控制台执行 curl 127.0.0.1:9000 看返回什么
062020-06-23 -
ustbhuangyi
2020-06-23
nginx -t ,先看配置是否正确
062020-06-23
相似问题