Do you mean part try_files ?The sample nginx config we provide is here: https://github.com/phpbb/phpbb/blob/rel ... ample.conf
Yours is similar but has been tweaked, specifically the part handling the URL rewriting.
Code:
location / { try_files $uri $uri/ @rewriteapp; ... } location @rewriteapp { rewrite ^(.*)$ /app.php/$1 last; }
And in the /var/log/nginx/error.log there many messages like
[error] 43343#43343: *6422 rewrite or internal redirection cycle while redirect to named location "@rewriteapp"
Statistics: Posted by Vaga — Sun Feb 02, 2025 7:09 pm