diff options
author | Jim Campbell <jcampbell@gnome.org> | 2015-05-11 13:05:10 -0500 |
---|---|---|
committer | Jim Campbell <jcampbell@gnome.org> | 2015-05-11 19:00:40 -0500 |
commit | ec255f63be8eeca90a7e9b0b8616f887ae4405d1 (patch) | |
tree | d2af79dd90d083221334a035dbe39307a17d0155 /docs/source/siteadmin/deploying.rst | |
parent | 94a5d6a81dd00bdd2303a1882af74df6cee55a5a (diff) | |
download | mediagoblin-ec255f63be8eeca90a7e9b0b8616f887ae4405d1.tar.lz mediagoblin-ec255f63be8eeca90a7e9b0b8616f887ae4405d1.tar.xz mediagoblin-ec255f63be8eeca90a7e9b0b8616f887ae4405d1.zip |
docs: Copy paste.ini to paste_local.ini
Some scripts on the internet have referenced paste_local.ini, so
it is safer to have a copy on the filesystem by default, even if
the user doesn't need to change any of the values for a regular
setup.
Diffstat (limited to 'docs/source/siteadmin/deploying.rst')
-rw-r--r-- | docs/source/siteadmin/deploying.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst index 74ef1f86..c2a0da39 100644 --- a/docs/source/siteadmin/deploying.rst +++ b/docs/source/siteadmin/deploying.rst @@ -282,12 +282,13 @@ Edit site configuration ~~~~~~~~~~~~~~~~~~~~~~~ A few basic properties must be set before MediaGoblin will work. First -make a copy of ``mediagoblin.ini`` for editing so the original config -file isn't lost:: +make a copy of ``mediagoblin.ini`` and ``paste.ini`` for editing so the original +config files aren't lost (you likely won't need to edit the paste configuration, +but we'll make a local copy of it just in case):: - $ cp mediagoblin.ini mediagoblin_local.ini + $ cp -av mediagoblin.ini mediagoblin_local.ini && cp -av paste.ini paste_local.ini -Then: +Then edit mediagoblin_local.ini: - Set ``email_sender_address`` to the address you wish to be used as the sender for system-generated emails - Edit ``direct_remote_path``, ``base_dir``, and ``base_url`` if |