Re: Stumped with issue of Nginx passing requests to php-fpm while using SSL

2013-09-27 Thread Maxim Dounin
Hello! On Fri, Sep 27, 2013 at 10:45:34AM +1200, Steve Holdoway wrote: > OK, the problem is that you're listening on *http* on port 443. You need > to use > > listen 443 ssl [default]; > > for ssl. The config posted uses "ssl on", which is a valid way to configure ssl on all sockets u

Re: Stumped with issue of Nginx passing requests to php-fpm while using SSL

2013-09-27 Thread Maxim Dounin
Hello! On Thu, Sep 26, 2013 at 10:34:46PM +, Eric Tyrer wrote: > Problem i have is that after attempting to login to wordpress over SSL php is > not being processed/executed. > > I've got a Wordpress 3.5 multi-site using subdirectories. [...] > nginx handles requests fine through port 80

Re: Stumped with issue of Nginx passing requests to php-fpm while using SSL

2013-09-26 Thread Steve Holdoway
OK, the problem is that you're listening on *http* on port 443. You need to use listen 443 ssl [default]; for ssl. As an aside, you can combine the http: and https: configs, using the two listen statements, and dropping the 'ssl on' in a single block. Makes admin simpler... havn't chec

Stumped with issue of Nginx passing requests to php-fpm while using SSL

2013-09-26 Thread Eric Tyrer
Problem i have is that after attempting to login to wordpress over SSL php is not being processed/executed. I've got a Wordpress 3.5 multi-site using subdirectories. nginx version: nginx/1.4.2 built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) TLS SNI support enabled configure arguments: --pr