vHost配置 - 汇合 - 错误

时间:2016-03-06 08:52:19

标签: apache 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>

其中:

  • 123.45.67.89是我的数字海洋IP
  • 99999是一个小于65535的自定义端口号

截图:

'禁止'喜欢/不喜欢:sub.mydomain.com

enter image description here

可以喜欢/不同于:http://123.45.67.89:99999

enter image description here

无法更新加载项:sub.mydomain.com

enter image description here

可以更新加载项:http://123.45.67.89:99999

enter image description here

问题:

有人看到我做错了吗?

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

事实证明,通过改变一般配置下的设置融合,可以轻松解决这个问题:

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

  
      
  1. 选择cog图标,然后选择Confluence Administration
  2. 下的General Configuration   
  3. 在左侧面板中选择“常规配置”
  4.   
  5. 选择修改
  6.   
  7. 在“服务器基本URL”文本框中输入新URL
  8.   
  9. 选择保存
  10.   

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

我在想:

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

^^我有vHosts所有这些但我只能在notes.mydomain上进行编辑^^

我希望至少这可以帮助别人。

感谢阅读!