我有一个处理子域(gate.domain.eu)的VPS主机。 现在,我在连接到运行gitlab实例的VPN的专用网络中有一台辅助计算机。使用vpn和端口转发,我设法将gitlab实例带到https://gate.domain.eu:8443。 如何配置apache服务器,使其将另一个子域(例如(gitlab.domain.eu))指向https://gate.domain.eu:8443?
想法是用户应通过gitlab.domain.eu访问gitlab。
我为gitlab.domain.eu配置了DNS服务器,并按如下方式配置了apache虚拟主机:
<VirtualHost *:80>
ServerAdmin me@mydomain.com
ServerName gitlab.domain.eu
ProxyPreserveHost On
# setup the proxy
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / https://gate.domain.eu:8443/
ProxyPassReverse / https://gate.domain.eu:8443/
</VirtualHost>
访问gitlab.domain.eu时,我得到: “内部服务器错误 服务器遇到内部错误或配置错误,无法完成您的请求。”