我有以下配置
location / {
proxy_pass http://backend;
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;
}
但是在应用程序中backend
,有些路径使用http
协议,有些路径使用https
。
我想设置 nginx,以便它能够正确转发,而无需在 nginx 设置 ssl。
这可能吗?