HortonX25
Member
So I've started by getting XF 2 working on Nginx without SSL, all fine and dandy.
So I decide to switch, this being what is put in nginx
	
	
	
		
I then attempt to run it, but I get this error
	
	
	
		
I go to the nginx error log and I get this
	
	
	
		
Any clue? As this only seems to occur if I'm on HTTPS, HTTP works fine.
				
			So I decide to switch, this being what is put in nginx
		NGINX:
	
	http {
      server {
      listen 443 ssl;
        server_name frozenincarbonite.org;
        ssl_certificate /root/bundle.crt;
        ssl_certificate_key /root/frozenincarbonite.org.key;
       location / {
          root /data/www;
          try_files $uri $uri/ /index.php?$uri&$args;
    }
}I then attempt to run it, but I get this error
		NGINX:
	
	500 Internal Server ErrorI go to the nginx error log and I get this
		NGINX:
	
	2018/07/11 12:18:55 [error] 4797#4797: *104647 rewrite or internal redirection cycle while internally redirecting to "/index.php", client: 109.151.59.135, server: frozenincarbonite.org, request: "GET /favicon.ico HTTP/1.1", host: "www.frozenincarbonite.org", referrer: "https://www.frozenincarbonite.org/"Any clue? As this only seems to occur if I'm on HTTPS, HTTP works fine.
 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		