Page 1 of 1

Gitlab change the default home page url

Posted: 2023 Aug 28, 17:09
by Mihai
Cannot change Home page URL from the admin page

Login into internal gitlab database

Code: Select all

sudo -u gitlab-psql /opt/gitlab/embedded/bin/psql -h /var/opt/gitlab/postgresql -d gitlabhq_production
Check home_page_url:

Code: Select all

select home_page_url from application_settings;


         home_page_url         
-------------------------------
 https://my.old.gitlab.tld
(1 row)
Update home_page_url with new url:

Code: Select all

update application_settings set home_page_url='https://my.new.gitlab.tld' where home_page_url='https://my.old.gitlab.tld';
Check if url changed.

Code: Select all

select home_page_url from application_settings;


         home_page_url         
-------------------------------
 https://my.new.gitlab.tld
(1 row)
Reconfigure then restart gitlab.