If you are planning to send application emails via gmail SMTP server intead of via Sendmail, follow the steps below Open GitLab config file in an editor sudo vim /etc/gitlab/gitlab.rb Add the following line in the config file Change “my.email@gmail.com”…
GitLab
Enable Git LFS in GitLab Omnibus Installation
Open gitlab config file in an editor sudo vim /etc/gitlab/gitlab.rb Search for the following line #gitlab_rails[‘lfs_enabled’] = false Uncomment it and change the value to true. It will look like this: gitlab_rails[‘lfs_enabled’] = true Save the file and reconfigure GitLab…
Install and configure GitLab on Ubuntu 18.04 LTS
Login into the server as root user and update the Ubuntu repository. apt-get update Now install curl , ca-certificates, and postfix packages. sudo apt-get install -y curl openssh-server ca-certificates sudo apt-get install -y postfix During Postfix installation a configuration screen…