diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-03 10:27:39 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-03 10:27:39 -0500 |
commit | 996e9b4c4f6ad1ee8a03f5348a65895c88d040fe (patch) | |
tree | 297c75a412d8b5c5c39b06d8520ef6264dc12056 /docs/source | |
parent | a5d50276b9fa26859766d4e4b52240f3d8f55896 (diff) | |
download | mediagoblin-996e9b4c4f6ad1ee8a03f5348a65895c88d040fe.tar.lz mediagoblin-996e9b4c4f6ad1ee8a03f5348a65895c88d040fe.tar.xz mediagoblin-996e9b4c4f6ad1ee8a03f5348a65895c88d040fe.zip |
Indentation was off by one ;)
Diffstat (limited to 'docs/source')
-rw-r--r-- | docs/source/deploying.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/deploying.rst b/docs/source/deploying.rst index 61baddb8..cbdf9a4c 100644 --- a/docs/source/deploying.rst +++ b/docs/source/deploying.rst @@ -213,7 +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; + fastcgi_param PATH_INFO $fastcgi_script_name; include /etc/nginx/fastcgi_params; } } |