vHost 配置 - Confluence - 错误

vHost Configuration - Confluence - Errors

总结:

我刚刚启动了一个数字海洋 VM,在上面安装了 confluence,并为我的子域设置了一个 apache vHost 文件。现在,当我尝试编辑页面和执行某些管理更改时,我似乎收到错误消息。

我认为这是因为在 Chrome:

中访问服务器 IP 和端口时没有问题

vHost 文件:

使用的来源:https://confluence.atlassian.com/doc/using-apache-with-virtual-hosts-and-mod_proxy-173685.html

<VirtualHost *:80>
    ServerName sub.mydomain.com

    ProxyRequests Off
    <Proxy *:99999>
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyPass / http://123.45.67.89:99999/
    ProxyPassReverse / http://123.45.67.89:99999/
    <Location />
        Order allow,deny
        Allow from all
    </Location>
</VirtualHost>

其中:

截图:

'Forbidden' 来自 liking/unliking:sub.mydomain.com

可以 Like/unlike : http://123.45.67.89:99999

无法更新附加组件:sub.mydomain.com

可以更新附加组件:http://123.45.67.89:99999

问题:

有人看到我做错了什么吗?

在此先感谢您的帮助。

事实证明,这个问题很容易通过在一般配置下更改设置 confluence 来解决:

https://confluence.atlassian.com/doc/configuring-the-server-base-url-148592.html

  1. Choose the cog icon, then choose General Configuration under Confluence Administration
  2. Choose General Configuration in the left-hand panel
  3. Choose Edit
  4. Enter the new URL in the Server Base URL text box
  5. Choose Save

如果有更好的方法可以让多个域工作,请告诉我

我在想:

  • notes.mydomain
  • kb.mydomain
  • grimoire.mydomain

^^ 我有所有这些的虚拟主机,但我只能在 notes.mydomain 上进行编辑 ^^

我希望至少这对其他人有帮助。

感谢阅读!