From: Jesse Sheidlower Date: Fri, 17 Feb 2012 01:13:21 +0000 (-0500) Subject: Fixed wrong app name for socket in non-root config X-Git-Tag: 5.9007~30^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=09300532e2e27e1cdd4fbcd03f0e73d84c168670;hp=d38b46544349cbb9d5d650d528face0416bd07a0 Fixed wrong app name for socket in non-root config --- diff --git a/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod b/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod index 10c15fe..2cd9269 100644 --- a/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod +++ b/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod @@ -65,7 +65,7 @@ As an example, if your application is rooted at /myapp, you would configure: include /etc/nginx/fastcgi_params; fastcgi_param SCRIPT_NAME /myapp/; fastcgi_param PATH_INFO $fastcgi_script_name; - fastcgi_pass unix:/tmp/mediaapi.socket; + fastcgi_pass unix:/tmp/myapp.socket; } C<$fastcgi_script_name> would be "/myapp/path/of/the/action". Catalyst will @@ -76,7 +76,7 @@ functional. Note that the rewrite may not be needed with newer versions of nginx, and the paths must be exactly as specified - the trailing slash in the -location block and the SCRIPT name are important. +location block and the SCRIPT_NAME are important. =head2 SSL