Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2019-01-16 17:12:07 +0300
committerDouwe Maan <douwe@gitlab.com>2019-01-16 17:12:07 +0300
commit60db79cbf52cf17ea332edbc4c99fe5c27ca61ee (patch)
treeca5e2da5f88eef3d387a132cb99eebcbeb5199e9
parent454942da67911ed6968b799f23c6b9080da7b856 (diff)
parent05704a6ae18c64e44ffd713724850d5901b7b88e (diff)
Merge branch 'features/document-graphicsmagick-source-installation' into 'master'
Document graphicsmagick installation for source installation Closes #56322 See merge request gitlab-org/gitlab-ce!24404
-rw-r--r--changelogs/unreleased/features-document-graphicsmagick-source-installation.yml5
-rw-r--r--doc/install/installation.md7
2 files changed, 12 insertions, 0 deletions
diff --git a/changelogs/unreleased/features-document-graphicsmagick-source-installation.yml b/changelogs/unreleased/features-document-graphicsmagick-source-installation.yml
new file mode 100644
index 00000000000..b224cace4bf
--- /dev/null
+++ b/changelogs/unreleased/features-document-graphicsmagick-source-installation.yml
@@ -0,0 +1,5 @@
+---
+title: Document graphicsmagick installation for source installation
+merge_request: 24404
+author: Alexis Reigel
+type: added
diff --git a/doc/install/installation.md b/doc/install/installation.md
index 678c306a484..2eba2cc4847 100644
--- a/doc/install/installation.md
+++ b/doc/install/installation.md
@@ -117,6 +117,13 @@ sudo make prefix=/usr/local install
# When editing config/gitlab.yml (Step 5), change the git -> bin_path to /usr/local/bin/git
```
+For the [Custom Favicon](../customization/favicon.md) to work, graphicsmagick
+needs to be installed.
+
+```sh
+sudo apt-get install -y graphicsmagick
+```
+
**Note:** In order to receive mail notifications, make sure to install a mail server. By default, Debian is shipped with exim4 but this [has problems](https://gitlab.com/gitlab-org/gitlab-ce/issues/12754) while Ubuntu does not ship with one. The recommended mail server is postfix and you can install it with:
```sh