lcomplete / huntly

Huntly, information management tool, rss reader, automatic saving browsed contents include tweets, github stars management tool. 信息管理工具、RSS 阅读器、GitHub stars 管理、推文管理、自动记录浏览过的文章。
https://chrome.google.com/webstore/detail/huntly/cphlcmmpbdkadofgcedjgfblmiklbokm
Apache License 2.0
2.03k stars 171 forks source link

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

Closed cutemanworking closed 11 months ago

cutemanworking commented 11 months ago

我在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; }

lcomplete commented 11 months ago

不能设置成子目录,换个二级域名或端口吧。

cutemanworking @.***>于2023年12月27日 周三16:40写道:

我在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; }

— Reply to this email directly, view it on GitHub https://github.com/lcomplete/huntly/issues/54, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2GWDUP6KPRYOALH3IGNJTYLPNIHAVCNFSM6AAAAABBEDEGDWVHI2DSMVQWIX3LMV43ASLTON2WKOZSGA2TOMBYGU3TCNY . You are receiving this because you are subscribed to this thread.Message ID: @.***>

cutemanworking commented 11 months ago

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