nginx配置问题
# 具体遇到的问题
老师,我用阿里上的nginx服务做转发,https://ota.swanair.com.cn/,到一台服务器上
server {
listen 8088;
server_name localhost;
location / {
root /usr/local/myspace/te-tst;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
这么配置就好使,
# 报错信息的截图
但是
server {
listen 8088;
server_name localhost;
location /c {
root /usr/local/myspace/te-tst;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
我访问https://ota.swanair.com.cn/c,就不好使,报404,使哪里错了吗?# 相关课程内容截图

# 尝试过的解决思路和结果
# 粘贴全部相关代码,切记添加代码注释(请勿截图)
在这里输入代码,可通过选择【代码语言】突出显示
正在回答
看不出啥问题呀。你的端口也没有。
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星