Hello im trying to add ssl cert by proxying connections thru nginx and its working apart from hfs homepages they just dont generate and show the nginx 502 bad gateway but any of my custom html pages do load & work + has ssl but interestingly the hfs not found page does display is there any way to fix this?
heres my nginx config:
location / {
proxy_pass
http://192.168.0.100:80; proxy_set_header Host $http_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_buffering off;
proxy_redirect off;
}
btw what does "Return to th is topic" do?