7899d7ca428850df7508aa7c7d9fdd9cbc598e75
[mediagoblin.git] / mediagoblin.ini
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 # To chnange the directory you should make sure you change the
9 # directory in paste.ini and/or your webserver configuration.
10 #[DEFAULT]
11 # data_basedir = "/path/to/data/directory"
12
13 [mediagoblin]
14 direct_remote_path = /mgoblin_static/
15 email_sender_address = "notice@mediagoblin.example.org"
16
17 ## Uncomment and change to your DB's appropiate setting.
18 ## Default is a local sqlite db "mediagoblin.db".
19 ## Don't forget to run `./bin/gmg dbupdate` after having changed it.
20 # sql_engine = postgresql:///mediagoblin
21
22 # Set to false to enable sending notices
23 email_debug_mode = true
24
25 # Set to false to disable registrations
26 allow_registration = true
27
28 # Set to false to disable the ability for users to report offensive content
29 allow_reporting = true
30
31 ## Uncomment this to put some user-overriding templates here
32 # local_templates = %(data_basedir)s/templates/
33
34 ## You can set your theme by specifying this (not specifying it will
35 ## use the default theme). Run `gmg assetlink` to apply the change.
36 ## The airy and sandyseventiesspeedboat theme comes with GMG; please
37 ## see the theming docs on how to install other themes.
38 # theme = airy
39
40 ## If you want the terms of service displayed, you can uncomment this
41 # show_tos = true
42
43 user_privilege_scheme = "uploader,commenter,reporter"
44 [storage:queuestore]
45 base_dir = %(data_basedir)s/media/queue
46
47 [storage:publicstore]
48 base_dir = %(data_basedir)s/media/public
49 base_url = /mgoblin_media/
50
51 [celery]
52 # Put celery stuff here
53
54 # Place plugins here, each in their own subsection of [plugins].
55 # See http://docs.mediagoblin.org/siteadmin/plugins.html for details.
56 [plugins]
57 [[mediagoblin.plugins.geolocation]]
58 [[mediagoblin.plugins.basic_auth]]
59 [[mediagoblin.media_types.image]]