How to use nginx(intsalled on docker) reverse proxy gitlab(installed on docker too) – Ubuntu
I installed gitlab according to the official documentation. sudo docker run --detach --hostname git.stupidpz.com --publish 8443:443 --publish 880:80 --publish 822:22 --name gitlab --restart always --volume $GITLAB_HOME/config:/etc/gitlab --volume $GITLAB_HOME/logs:/var/log/gitlab --volume $GITLAB_HOME/data:/var/opt/gitlab --shm-size 256m gitlab/gitlab-ee:latest Now I want to use Nginx(installed By…