Merge branch 'master' into OPW-Moderation-Update
[mediagoblin.git] / mediagoblin.ini
... / ...
CommitLineData
1# If you want to make changes to this file, first copy it to
2# mediagoblin_local.ini, then make the changes there.
3#
4# If you don't see what you need here, have a look at mediagoblin/config_spec.ini
5# It defines types and defaults so it’s a good place to look for documentation
6# or to find hidden options that we didn’t tell you about. :)
7
8[mediagoblin]
9direct_remote_path = /mgoblin_static/
10email_sender_address = "notice@mediagoblin.example.org"
11
12## Uncomment and change to your DB's appropiate setting.
13## Default is a local sqlite db "mediagoblin.db".
14## Don't forget to run `./bin/gmg dbupdate` after having changed it.
15# sql_engine = postgresql:///mediagoblin
16
17# Set to false to enable sending notices
18email_debug_mode = true
19
20# Set to false to disable registrations
21allow_registration = true
22
23## Uncomment this to put some user-overriding templates here
24# local_templates = %(here)s/user_dev/templates/
25
26## You can set your theme by specifying this (not specifying it will
27## use the default theme). Run `gmg theme assetlink` to apply the change.
28## The airy theme comes with GMG; please see the theming docs on how to
29## install other themes.
30# theme = airy
31
32[storage:queuestore]
33base_dir = %(here)s/user_dev/media/queue
34
35[storage:publicstore]
36base_dir = %(here)s/user_dev/media/public
37base_url = /mgoblin_media/
38
39[celery]
40# Put celery stuff here
41
42# Place plugins here, each in their own subsection of [plugins].
43# See http://docs.mediagoblin.org/siteadmin/plugins.html for details.
44[plugins]
45[[mediagoblin.plugins.geolocation]]
46[[mediagoblin.plugins.basic_auth]]
47[[mediagoblin.media_types.image]]