Nginx:使用 fastcgi_pass 时覆盖主机 header
Nginx: Override host header when using fastcgi_pass
我试图在使用 fastcgi_pass.[=22= 时覆盖传递到我的 php-based 应用程序(特别是 Phabricator)的 http 主机 header ]
我找到了很多使用 proxy_pass 时执行此操作的示例,但我似乎找不到如何使用 fastcgi_pass 执行此操作的示例。具体来说,我希望代理 php 应用程序将主机 header 视为 "phabricator.localhost"。
(这样做的原因是我想将几个不同的域与 Phabricator webapp 相关联,但它只允许关联一个域并且它拒绝任何不是该域的请求。)
我对使用 FastCGI 配置 Nginx 还很陌生,所以我不确定 fastcgi 是如何工作的。感谢任何帮助。
这是我的 Nginx 服务器配置:
server {
server_name phabricator.localhost www.example.com example.com;
root /opt/phabricator/phabricator/webroot;
location / {
index index.php;
rewrite ^/(.*)$ /index.php?__path__=/ last;
}
location = /favicon.ico {
try_files $uri =204;
}
location /index.php {
fastcgi_pass localhost:9000;
fastcgi_index index.php;
#### HERE ARE MY ATTEMPTS #####
#proxy_set_header HOST phabricator.localhost;
#fastcgi_param SERVER_NAME phabricator.localhost;
#fastcgi_pass_header 'Host: phabricator.localhost';
#fastcgi_pass_header 'Host: phabricator.localhost';
#add_header Host phabricator.localhost;
#proxy_set_header Host phabricator.localhost;
#### END ATTEMPTS ####
fastcgi_param REDIRECT_STATUS 200;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
}
}
你试过HTTP_HOST了吗?以下对我有用:
fastcgi_param HTTP_HOST phabricator.localhost;
我试图在使用 fastcgi_pass.[=22= 时覆盖传递到我的 php-based 应用程序(特别是 Phabricator)的 http 主机 header ] 我找到了很多使用 proxy_pass 时执行此操作的示例,但我似乎找不到如何使用 fastcgi_pass 执行此操作的示例。具体来说,我希望代理 php 应用程序将主机 header 视为 "phabricator.localhost"。
(这样做的原因是我想将几个不同的域与 Phabricator webapp 相关联,但它只允许关联一个域并且它拒绝任何不是该域的请求。)
我对使用 FastCGI 配置 Nginx 还很陌生,所以我不确定 fastcgi 是如何工作的。感谢任何帮助。
这是我的 Nginx 服务器配置:
server {
server_name phabricator.localhost www.example.com example.com;
root /opt/phabricator/phabricator/webroot;
location / {
index index.php;
rewrite ^/(.*)$ /index.php?__path__=/ last;
}
location = /favicon.ico {
try_files $uri =204;
}
location /index.php {
fastcgi_pass localhost:9000;
fastcgi_index index.php;
#### HERE ARE MY ATTEMPTS #####
#proxy_set_header HOST phabricator.localhost;
#fastcgi_param SERVER_NAME phabricator.localhost;
#fastcgi_pass_header 'Host: phabricator.localhost';
#fastcgi_pass_header 'Host: phabricator.localhost';
#add_header Host phabricator.localhost;
#proxy_set_header Host phabricator.localhost;
#### END ATTEMPTS ####
fastcgi_param REDIRECT_STATUS 200;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
fastcgi_param REMOTE_ADDR $remote_addr;
}
}
你试过HTTP_HOST了吗?以下对我有用:
fastcgi_param HTTP_HOST phabricator.localhost;