made basic_auth a default plugin
[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 [mediagoblin]
9 direct_remote_path = /mgoblin_static/
10 email_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 # sql_engine = postgresql:///mediagoblin
15
16 # set to false to enable sending notices
17 email_debug_mode = true
18
19 # Set to false to disable registrations
20 allow_registration = true
21
22 ## Uncomment this to turn on video or enable other media types
23 ## You may have to install dependencies, and will have to run ./bin/dbupdate
24 ## See http://docs.mediagoblin.org/siteadmin/media-types.html for details.
25 # media_types = mediagoblin.media_types.image, mediagoblin.media_types.video
26
27 ## Uncomment this to put some user-overriding templates here
28 # local_templates = %(here)s/user_dev/templates/
29
30 ## You can set your theme by specifying this (not specifying it will
31 ## use the default theme). Run `gmg theme assetlink` to apply the change.
32 ## The airy theme comes with GMG; please see the theming docs on how to
33 ## install other themes.
34 # theme = airy
35
36 # Set to true to run an instance with no authentication plugins enabled.
37 # You will not be able to login or register
38 no_auth = false
39
40 [storage:queuestore]
41 base_dir = %(here)s/user_dev/media/queue
42
43 [storage:publicstore]
44 base_dir = %(here)s/user_dev/media/public
45 base_url = /mgoblin_media/
46
47 [celery]
48 # Put celery stuff here
49
50 # place plugins here---each in their own subsection of [plugins]. see
51 # documentation for details.
52 [plugins]
53 [[mediagoblin.plugins.geolocation]]
54 [[mediagoblin.plugins.basic_auth]]