将Apache服务器用于幽灵博客

时间:2018-08-14 07:52:43

标签: apache nginx reverse-proxy mod-proxy ghost-blog


我的域说https://example.com,并且在Apache Server上使用SSL。
现在,我在https://blog.example.com上拥有在Apache Server上使用SSL的幽灵博客。我的虚拟主机是:

<VirtualHost *:80>
    ServerAdmin abc@abc.com
    ServerName blog.example.com
    DocumentRoot /var/www/abc/ghost
    ProxyPass / http://localhost:2368/
    ProxyPassReverse / http://localhost:2368/
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>


上面的方法不起作用,每当我转到blog.example.com->时,它将重定向到localhost:2368,并且该站点不可用。

我什至尝试使用NGINX使其监听端口2367(随机端口),然后监听proxy_pass localhost:2368->它正在工作,但是https://blog.example.com无法工作。

我该如何运作?

0 个答案:

没有答案