I have just installed gitlab on my website using the omnibus package. I am running ubuntu 14.04.
Gitlab would launch on any url of my website : myProviderUrl.com, myDomain.com and gitlab.myDomain.com
myDomain.com and gitlab.myDomain.com are virtual host configured with apache and they are working successfully when gitlab is not running. The point to different folders on my VPS.
When I do : sudo nano /etc/gitlab/gitlab.rb
I have the following line :
external_url: 'http://gitlab.myDomain.com'
When I do : sudo gitlab-ctl reconfigure
The configuration is cascaded correclty to every other conf file and in any of the files I have the same gitlab.myDomain.com url.
the files I checked :
config/gitlab.yml and gitlab-shell/config.yml
in lib/support/nginx/gitlab, I also have the good url and I have tried successively to uncomment the listen, with no result : gitlab still launches from any url of my website.
server {
listen 0.0.0.0:80 default_server;
listen [::]:80 default_server;
server_name gitlab.myDomain.com; ## Replace this with something like gitlab.example.com
server_tokens off; ## Don't show the nginx version number, a security best practice
root /home/git/gitlab/public;
}
What can I do ? Any idea of things I could test or modify ? THanks a lot!