gpt4 book ai didi

服务根的 nginx 规则

转载 作者:行者123 更新时间:2023-12-04 06:55:13 29 4
gpt4 key购买 nike

我想让 nginx 从网站根目录(:http://localhost:8080/)提供一个静态文件,但它为我的代理通行证提供服务;它提供“/”规则而不是“=/”。

这是我的 nginx 配置的样子:

listen 0.0.0.0:8080;
server_name localhost;

set $static_dir /path/to/static/

location = / {
# got index.html in /path/to/static/html/index.html
root $static_dir/html/;
}

location / {
# ...
proxy_pass http://app_cluster_1/;
}

我错过了什么 ?

最佳答案

使用这个:

location = / {
index index.html;
}

location = /index.html {
root /your/root/here;
}

关于服务根的 nginx 规则,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2649131/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com