X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FDeployment%2Fnginx%2FFastCGI.pod;h=d8e5f9a91f00441c6546b92deea4ee1e7b3f41f2;hp=be18780d5101d5c9aebf9e79cc28470153bf2857;hb=48bee5f2f211cddf426f77060164d2abd43c9306;hpb=a696baf692db7d3d8b1bfa844b4204b8e9a0704f diff --git a/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod b/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod index be18780..d8e5f9a 100644 --- a/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod +++ b/lib/Catalyst/Manual/Deployment/nginx/FastCGI.pod @@ -42,7 +42,7 @@ The server configuration block should look roughly like: fastcgi_param SERVER_ADDR $server_addr; fastcgi_param SERVER_PORT $server_port; fastcgi_param SERVER_NAME $server_name; - + # Adjust the socket for your applications! fastcgi_pass unix:$docroot/myapp.socket; } @@ -69,6 +69,15 @@ process this accordingly and setup the application base as expected. This behavior is somewhat different from Apache and lighttpd, but is still functional. +=head2 SSL + +Make sure that nginx passes this to your fastcgi. To ensure this, you need +the following in your nginx config for the SSL vhost: + + fastcgi_param HTTPS on + +=head1 MORE INFO + For more information on nginx, visit: L