Indentation was off by one ;)

This commit is contained in:
Christopher Allan Webber 2011-11-03 10:27:39 -05:00
parent a5d50276b9
commit 996e9b4c4f

View File

@ -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;
}
}