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:
authorAlexis Reigel <alexis.reigel.ext@siemens.com>2019-01-15 20:54:55 +0300
committerAlexis Reigel <alexis.reigel.ext@siemens.com>2019-01-15 21:03:04 +0300
commit05704a6ae18c64e44ffd713724850d5901b7b88e (patch)
tree4c41d2e9a88e4e09852350b3af8248b3106f7753
parent99ee6c82b8932827f980a16a5fff140de74df89a (diff)
doc graphicsmagick installation for source install
-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