我的服务器在 podman 中运行 gitlab。
我想要 gitlab 连接子域。
测试命令
podman start gitlab-ce --VIRTUAL-HOST=test.example.com -p 80
如何在 podman 中设置 virtualHost?
我的服务器在 podman 中运行 gitlab。
我想要 gitlab 连接子域。
测试命令
podman start gitlab-ce --VIRTUAL-HOST=test.example.com -p 80
如何在 podman 中设置 virtualHost?
根据GitLab 文档,可以使用以下方式启动容器:
sudo podman run --detach \
--hostname gitlab.example.com \
--env GITLAB_OMNIBUS_CONFIG="external_url 'http://test.example.com/';" \
--publish 443:443 --publish 80:80 \
--name gitlab \
--restart always \
gitlab/gitlab-ce:latest
sudo
需要绑定80和443端口。