aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/siteadmin/deploying.rst
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2012-07-27 08:45:35 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2012-07-27 08:48:25 -0500
commit8d051cc0854c1a82d6f12251295ee44d0d463713 (patch)
tree226fb53983fda8ff7a1e2e7c5b0069b0e67f0158 /docs/source/siteadmin/deploying.rst
parent4d1761d22fd9c6f2e0ee533236c47bb1ba51f507 (diff)
downloadmediagoblin-8d051cc0854c1a82d6f12251295ee44d0d463713.tar.lz
mediagoblin-8d051cc0854c1a82d6f12251295ee44d0d463713.tar.xz
mediagoblin-8d051cc0854c1a82d6f12251295ee44d0d463713.zip
Add documentation on how to alias your theme static files
Diffstat (limited to 'docs/source/siteadmin/deploying.rst')
-rw-r--r--docs/source/siteadmin/deploying.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/source/siteadmin/deploying.rst b/docs/source/siteadmin/deploying.rst
index 788b06d7..c9a429c7 100644
--- a/docs/source/siteadmin/deploying.rst
+++ b/docs/source/siteadmin/deploying.rst
@@ -283,6 +283,11 @@ this ``nginx.conf`` file should be modeled on the following::
alias /srv/mediagoblin.example.org/mediagoblin/user_dev/media/public/;
}
+ # Theme static files (usually symlinked in)
+ location /theme_static/ {
+ alias /srv/mediagoblin.example.org/mediagoblin/user_dev/theme_static/;
+ }
+
# Mounting MediaGoblin itself via FastCGI.
location / {
fastcgi_pass 127.0.0.1:26543;