gpt4 book ai didi

nginx - nginx 中的嵌套位置

转载 作者:行者123 更新时间:2023-12-04 09:34:53 28 4
gpt4 key购买 nike

嗨,我正在努力使以下内容起作用!

我基本上是在尝试允许通过这两个 URL 中的任何一个将以下 URL 传递给 proxy_pass 指令:

http://example.com/admin/1http://example.com/admin/2/

我有以下配置:

location /admin/ {

# Access shellinabox via proxy
location 1/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://example.com;
}

}

目前,抛出一个错误:
2016/01/17 15:02:19 [emerg] 1#1: location "1/" is outside location "/admin/" in /etc/nginx/conf.d/XXX.conf:37
nginx: [emerg] location "1/" is outside location "/admin/" in /etc/nginx/conf.d/XXX.conf:37

最佳答案

您应该使用 /admin/1/在您的内部位置块中,因为内部 URL 与外部 URL 无关。您可以看到这是基于您包含的错误消息中的以下片段的问题...

location "1/" is outside location "/admin/"

关于nginx - nginx 中的嵌套位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34839823/

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