diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2020-04-30 15:11:55 +1000 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2020-04-30 15:11:55 +1000 |
commit | 06d8fc891778600ad282aa92f7eb143bad8ccb55 (patch) | |
tree | 664ccbdda0493d0092abcc2cc93c3a0499b1af56 /docs/source/siteadmin/deploying.rst | |
parent | a9b7bd60b21afc9235a598d38e7ca6f22c4c79ee (diff) | |
download | mediagoblin-06d8fc891778600ad282aa92f7eb143bad8ccb55.tar.lz mediagoblin-06d8fc891778600ad282aa92f7eb143bad8ccb55.tar.xz mediagoblin-06d8fc891778600ad282aa92f7eb143bad8ccb55.zip |
docs: Note possible permission issues during install.
Diffstat (limited to 'docs/source/siteadmin/deploying.rst')
-rw-r--r-- | docs/source/siteadmin/deploying.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst index 7b9d6e31..2e3fc992 100644 --- a/docs/source/siteadmin/deploying.rst +++ b/docs/source/siteadmin/deploying.rst @@ -482,6 +482,17 @@ machine in front of you, visit <http://localhost/> or if it is a remote server visit the URL or IP address provided to you by your hosting provider. You should see MediaGoblin; this time via Nginx! +Try logging in and uploading an image. If after uploading you see any +"Forbidden" errors from Nginx or your image doesn't show up, you may +need to update the permissions on the new directories MediaGoblin has +created:: + + # Debian and co. + sudo chown --no-dereference --recursive mediagoblin:www-data /srv/mediagoblin.example.org + + # Fedora and co. + sudo chown --no-dereference --recursive mediagoblin:nginx /srv/mediagoblin.example.org + .. note:: If you see an Nginx placeholder page, you may need to remove the |