我有一个使用 nginx 的 Web 应用程序。我的 nginx 配置的一部分:
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:4000;
proxy_read_timeout 90;
proxy_redirect http://localhost:4000 https://domain123.net;
}
要向“/admin”添加基本身份验证,我必须执行以下操作:
location /admin {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:4000/admin;
proxy_read_timeout 90;
proxy_redirect http://localhost:4000/admin https://domain123.net/admin;
auth_basic "who?";
auth_basic_user_file /etc/nginx/.htpasswd;
}
我如何避免重复代理_NNN对于“/admin”?
答案1
把重复的东西放在 中include
。