August 2019
Beginner
608 pages
16h 7m
English
This section of the configuration file is mainly used to define the global settings for the whole GitLab application.
The first settings you will encounter are mainly for the web server component (Unicorn). You can specify which FQDN to use for the hostname, the port on which to listen to, and whether to use HTTPS:
host: localhost port: 80 https: false
You can set the port to 443 and HTTPS to true if you want to use HTTPS. If you have a different ssh_host in your setup, you can specify it as well (If you want Git-SSH to run on the same server, that you don't need to specify this):
ssh_host: ssh.host_example.com
Furthermore, if you want to use relative URLs (/mygitlab/ for instance):
relative_url_root: /gitlab
You can ...
Read now
Unlock full access