我可以在 Nginx 中创建一个 "private" 位置吗?
Can I create a "private" location in Nginx?
我可以在 nginx 配置中创建一个可以被任何其他位置访问并且不能从外部直接访问的位置吗?
我可以使用拒绝指令,但它也会拒绝访问 nginx 配置中定义的位置。
这是我的配置 -
server {
listen *:80;
server_name 127.0.0.1;
location = /auth {
set $query '';
if ($request_uri ~* "[^\?]+\?(.*)$") {
set $query ;
}
# add_header X-debug-message "Parameters being passed $is_args$args" always;
proxy_pass http://127.0.0.1:8080/auth?$query;
}
location /kibana/ {
rewrite ^/kibana/(.*) / break;
proxy_pass http://127.0.0.1:5601;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
auth_request /auth;
}
location ~ (/app/|/app/kibana|/bundles/|/kibana4|/status|/plugins|/ui/|/api/|/monitoring/|/elasticsearch/) {
internal;
proxy_pass http://127.0.0.1:5601;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
rewrite /kibana4/(.*)$ / break;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
因此,我需要只能从位置 /kibana/ 访问最后一个位置,但是 internal;
它抛出 404 错误,没有它工作正常。
我实际上需要用 nginx 保护 kibana,但我最终会在没有任何身份验证的情况下有效地暴露它。
您可以使用一种叫做 named location 的东西。它根本无法从外部访问,但在您的配置中,您可以在某些情况下引用它:
location @nginxonly {
proxy_pass http://example.com/$uri$is_args$args;
}
创建命名位置后,您可以在某些 其他地方引用它,例如try_files
指令中的最后一项。
我可以在 nginx 配置中创建一个可以被任何其他位置访问并且不能从外部直接访问的位置吗?
我可以使用拒绝指令,但它也会拒绝访问 nginx 配置中定义的位置。
这是我的配置 -
server {
listen *:80;
server_name 127.0.0.1;
location = /auth {
set $query '';
if ($request_uri ~* "[^\?]+\?(.*)$") {
set $query ;
}
# add_header X-debug-message "Parameters being passed $is_args$args" always;
proxy_pass http://127.0.0.1:8080/auth?$query;
}
location /kibana/ {
rewrite ^/kibana/(.*) / break;
proxy_pass http://127.0.0.1:5601;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
proxy_cache_bypass $http_upgrade;
auth_request /auth;
}
location ~ (/app/|/app/kibana|/bundles/|/kibana4|/status|/plugins|/ui/|/api/|/monitoring/|/elasticsearch/) {
internal;
proxy_pass http://127.0.0.1:5601;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
rewrite /kibana4/(.*)$ / break;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
因此,我需要只能从位置 /kibana/ 访问最后一个位置,但是 internal;
它抛出 404 错误,没有它工作正常。
我实际上需要用 nginx 保护 kibana,但我最终会在没有任何身份验证的情况下有效地暴露它。
您可以使用一种叫做 named location 的东西。它根本无法从外部访问,但在您的配置中,您可以在某些情况下引用它:
location @nginxonly {
proxy_pass http://example.com/$uri$is_args$args;
}
创建命名位置后,您可以在某些 其他地方引用它,例如try_files
指令中的最后一项。