Gitlab find version

To find version of hosted Gitlab installation, run gitlab-rake gitlab:env:info Example root@simplegitlab:~# gitlab-rake gitlab:env:info System information System: Ubuntu 16.04 Current User: git Using RVM: no Ruby Version: 2.5.3p105 Gem Version: 2.7.9 Bundler Version:1.17.3 Rake Version: 12.3.2 Redis Version: 3.2.12 Git Version: 2.21.0 Sidekiq Version:5.2.7 Go Version: unknown GitLab information Version: 11.11.0 Revision: 3e8ca2fb781 Directory: /opt/gitlab/embedded/service/gitlab-rails … Read more

Install LetsEncrypt SSL on Gitlab

gitlab

To enable LetsEncrypt free SSL on Gitlab, edit file vi /etc/gitlab/gitlab.rb Modify following configrations letsencrypt[‘enable’] = true external_url “https://gitlab.example.com” letsencrypt[‘contact_emails’] = [‘foo@email.com’] letsencrypt[‘auto_renew’] = true letsencrypt[‘auto_renew_hour’] = 1 letsencrypt[‘auto_renew_minute’] = 30 letsencrypt[‘auto_renew_day_of_month’] = “*/4” external_url should start with HTTPS. Run command gitlab-ctl reconfigure Now gitlab installation will work with HTTPS.

gitlab

Install Gitlab on Debian/Ubuntu Install LetsEncrypt SSL on Gitlab Gitlab find version Restart gitlab gitlab-ctl restart Resconfigure gitlab, needed if you make any changes to /etc/gitlab/gitlab.rb gitlab-ctl reconfigure Backups stored in /var/opt/gitlab/backups/

Install Gitlab on Debian/Ubuntu

Install requirements echo “postfix postfix/main_mailer_type string ‘Internet Site'” | debconf-set-selections echo “postfix postfix/mailname string localhost” | debconf-set-selections curl -Ls https://packages.gitlab.com/gpg.key | apt-key add – apt-get update apt-get –force-yes -y upgrade apt-get clean Setup repo/dependency wget https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh bash script.deb.sh Install gitlab apt-get install -y gitlab-ce

Microsoft Acquires GitHub, Migrate to GitLab

Microsoft on 4th June 2018 announced it reached agreement to acquire GitHub, worlds largest git repository hosting site used by developers. Under the terms of the agreement, Microsoft will acquire GitHub for $7.5 billion in Microsoft stock. Git is an open source version control software created by Linus Torvalds, then creator of Linux. Linux kernel … Read more