Добавить GitLab-Server-Setup.md

This commit is contained in:
Vic 2026-08-07 13:03:21 +03:00
parent a5e031c1bb
commit 74f80721d9

19
GitLab-Server-Setup.md Normal file
View file

@ -0,0 +1,19 @@
# Foreword
Since we using local instance on virtual machine first of all we need to set all urls to localhost/ip of virtual machine
It's important because gitlab behind the hood will use `gitlab.local` url, and this address will be unreachable in case we use
port forwarding from virtual machine.
# Setup local server
After gitlab instance installed let's get in docker container and change `external_url` setting:
```bash
# enter container
docker exec -it gitlab bash
# inside container
sed -i 's|external_url .*|external_url "http://10.0.2.15:85"|' /etc/gitlab/gitlab.rb
gitlab-ctl reconfigure
gitlab-ctl restart
exit
```
***It will take some time and it won't be fast***