我只是创建了一个数字海洋虚拟机,将其整合在一起,并为我的子域设置了一个apache vHost文件。现在看来,当我尝试编辑页面并执行某些管理员更改时,我收到错误。
我认为这是因为访问Chrome中的服务器IP和端口时没有问题:
使用的来源: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>
其中:
'禁止'喜欢/不喜欢:sub.mydomain.com
可以喜欢/不同于:http://123.45.67.89:99999
无法更新加载项:sub.mydomain.com
可以更新加载项:http://123.45.67.89:99999
有人看到我做错了吗?
提前感谢您的帮助。
答案 0 :(得分:0)
事实证明,通过改变一般配置下的设置融合,可以轻松解决这个问题:
https://confluence.atlassian.com/doc/configuring-the-server-base-url-148592.html
- 选择cog图标,然后选择Confluence Administration
下的General Configuration- 在左侧面板中选择“常规配置”
- 选择修改
- 在“服务器基本URL”文本框中输入新URL
- 选择保存
醇>
如果有更好的方法可以让我有多个域名,请告诉我们
我在想:
^^我有vHosts所有这些但我只能在notes.mydomain上进行编辑^^
我希望至少这可以帮助别人。
感谢阅读!