lcomplete/huntly

请教docker架构下是否可以通过nginx实现https访问?

cutemanworking opened this issue · 2 comments

我在nginx的配置如下,可以访问,但显示空白:
location /huntly {
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:15080;
proxy_read_timeout 90;
proxy_redirect http://localhost:15080;
}

嗯嗯, 换成端口方式就可以了, 感谢!!!!!!