diff options
author | Go MAEDA <maeda@farend.jp> | 2019-05-04 15:59:50 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-05-04 15:59:50 +0000 |
commit | bf0246ce83b3fe1dcc986bc4fc6acbc513330edd (patch) | |
tree | c31ffd9c10b608d8b48c4900bf1afa4c958a3678 /config/configuration.yml.example | |
parent | 400e1ca2ffffa9f2d4383e30c8c2c0e0b02c964b (diff) | |
download | redmine-bf0246ce83b3fe1dcc986bc4fc6acbc513330edd.tar.gz redmine-bf0246ce83b3fe1dcc986bc4fc6acbc513330edd.zip |
Add avatar_server_url configuration option in order to support Libravatar (#9112).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18124 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/configuration.yml.example')
-rw-r--r-- | config/configuration.yml.example | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/configuration.yml.example b/config/configuration.yml.example index bff4c9740..d11bc6146 100644 --- a/config/configuration.yml.example +++ b/config/configuration.yml.example @@ -209,6 +209,21 @@ default: # allowed values: :memory, :file, :memcache #openid_authentication_store: :memory + # URL of the avatar server + # + # By default, Redmine uses Gravatar as the avatar server for displaying + # user icons. You can switch to another Gravatar-compatible server such + # as Libravatar and opensource servers listed on + # https://wiki.libravatar.org/running_your_own/ + # + # URL of each avatar is: #{avatar_server_url}/avatar/#{hash} + # + # Examples: + # avatar_server_url: https://www.gravatar.com # default + # avatar_server_url: https://seccdn.libravatar.org + # + avatar_server_url: + # specific configuration options for production environment # that overrides the default ones production: |