What does this nginx error “rewrite or internal redirection cycle” mean?
It’s a strange one all right, though I’m going to bet the problem is with: try_files $uri $uri/ /index.html; The problem here is that the second parameter here, $uri/, causes each of the files in your index directive to be tried in turn. If none are found, it then moves on to /index.html, which causes … Read more