XF 1.5 SSL causing 404?

You need to make sure the HTTPS variable is passed from Nginx to PHP. You likely need a line like this in your FastCGI config:
Code:
fastcgi_param  HTTPS              $https if_not_empty;
 
Top Bottom