gpt4 book ai didi

ssl - 当 ghost 安装在子目录中时,如何强制 Ghost 的管理页面成为 SSL 服务器?

转载 作者:太空宇宙 更新时间:2023-11-03 13:08:45 25 4
gpt4 key购买 nike

我使用 Ghost 作为博客平台,使用 nginx 作为 ghost 的反向代理,详见文档。 Ghost 安装在一个子目录中,并在域 http://example.com/blog 上提供服务而静态网站是通过 example.com 提供的

我已经在我的服务器上设置了 SSL,并希望通过 SSL 为 ghost 登录页面 (example.com/blog/ghost) 提供服务,同时通过普通 HTTP 为其余页面提供服务。但是,如果我使用 forceAdminSSL:true 并尝试转到 http://example.com/blog/ghost,它应该会自动将我重定向到 https://example.com/blog/ghost。相反,我被重定向到 https://example.com/ghost 并以 404 错误结束。我发现唯一可行的解​​决方法是使用 foreAdminSSL:{redirect:false} 这很笨拙,因为我必须在地址栏中手动键入 https 而不是 http。

当 ghost 安装在子目录中时,我如何通过 ssl 服务器 Ghost 管理面板?我想这与 nginx 中的配置有关。

我的 nginx 配置 block

    server {
listen 80;
listen 443 ;
server_name *.example.com;
server_name example.com;
ssl on;
ssl_certificate /etc/nginx/ssl/certificate.crt;
ssl_certificate_key /etc/nginx/ssl/key.key;

location ^~/blog {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_set_header X-NginX-Proxy true;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:2786;
proxy_redirect off;
}


location / {
root "/home/ubuntu/somedirectory/";
index index.html;
}

最佳答案

我认为您在正确设置 Ghost 时没有输入配置 URL。

您可以通过运行以下命令来执行此操作:

ghost 配置 URL https://my-domain.com/blog/

幽灵重启

如果这不能解决问题,您可以在我的博客上查看解决此问题的详细教程 here

关于ssl - 当 ghost 安装在子目录中时,如何强制 Ghost 的管理页面成为 SSL 服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27658522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com