Skip to content

Instantly share code, notes, and snippets.

@mlutfy
Last active April 15, 2018 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlutfy/f4b814ab347ebac9a81c7ce3272d0c14 to your computer and use it in GitHub Desktop.
Save mlutfy/f4b814ab347ebac9a81c7ce3272d0c14 to your computer and use it in GitHub Desktop.
gitlab notes

[[TOC]]

Install

Config

/etc/gitlab/gitlab.rb

Lorsqu'on modifie la configuration, il faut lancer "reconfigure":

gitlab-ctl reconfigure

Logs:

gitlab-ctl tail

Sparkpost

Pour utiliser SparkPost pour les envois de courriels:

gitlab_rails['smtp_enable'] = true
gitlab_rails['smtp_address'] = "smtp.sparkpostmail.com"
gitlab_rails['smtp_port'] = 587
gitlab_rails['smtp_user_name'] = "SMTP_Injection"
gitlab_rails['smtp_password'] = "[... clé du sous-compte lab.symbiotic.coop dans SparkPost ...]" 
gitlab_rails['smtp_authentication'] = "login"
gitlab_rails['smtp_enable_starttls_auto'] = true

Reply by email

@JoeMurray
Copy link

Where should the Sparkpost config lines go?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment