HTTP 源标头 (https://example.com) 与request.base_url (http://example.com) 轨不匹配



我在https上使用puma运行Nginx服务器。我为SSL验证配置了Letsencrypt。问题是服务器运行良好,但当我试图通过设计创建用户时,它会抛出这个错误

"HTTP原始标头(https://example.com)与请求不匹配.base_url(http://example.com)">

我试图按照这里的指定修改nginx.conf配置https://github.com/rails/rails/issues/22965#issuecomment-17292004

但是,幸运的是我的配置文件

upstream puma {
server unix:///home/ubuntu/blue_whale/example/shared/tmp/sockets/gofickle-puma.sock;
}
server
{
listen 443 ssl default;
server_name example.com;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
root /home/ubuntu/blue_whale/example/current/public;
access_log /home/ubuntu/blue_whale/example/current/log/nginx.access.log;
error_log /home/ubuntu/blue_whale/example/current/log/nginx.error.log info;
add_header Strict-Transport-Security “max-age=31536000”;

location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @puma;
location / {
proxy_set_header  Host $host;
proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header  X-Forwarded-Proto $scheme;
proxy_set_header  X-Forwarded-Ssl on; # Optional
proxy_set_header  X-Forwarded-Port $server_port;
proxy_set_header  X-Forwarded-Host $host;
proxy_pass http://puma;
}

我的设置与您完全相同,我的设置使用以下代理配置:

location @rails {
proxy_set_header  X-Real-IP $remote_addr;
proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header  Host $http_host;
proxy_redirect off;
proxy_pass http://rails_app;
}

我认为可能是X-Forwarded-Proto和SSL导致了您的问题,在代理后面没有必要。

相关内容

最新更新