diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-03 10:23:53 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-03 10:23:53 -0500 |
commit | a5d50276b9fa26859766d4e4b52240f3d8f55896 (patch) | |
tree | d58b1a9b0329c2167a505292893c02780d3e926f /docs/source/deploying.rst | |
parent | 99192f2452f75c0d8b0f04eefa0dd74f10e61e31 (diff) | |
download | mediagoblin-a5d50276b9fa26859766d4e4b52240f3d8f55896.tar.lz mediagoblin-a5d50276b9fa26859766d4e4b52240f3d8f55896.tar.xz mediagoblin-a5d50276b9fa26859766d4e4b52240f3d8f55896.zip |
We left out a critical fastcgi variable from the nginx config
Diffstat (limited to 'docs/source/deploying.rst')
-rw-r--r-- | docs/source/deploying.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/source/deploying.rst b/docs/source/deploying.rst index 14665546..61baddb8 100644 --- a/docs/source/deploying.rst +++ b/docs/source/deploying.rst @@ -213,6 +213,7 @@ this ``nginx.conf`` file should be modeled on the following: :: # Mounting MediaGoblin itself via fastcgi. location / { fastcgi_pass 127.0.0.1:26543; + fastcgi_param PATH_INFO $fastcgi_script_name; include /etc/nginx/fastcgi_params; } } |