fix(nextcloud): Fix nginx config for Nextcloud app routing

- Change location / from try_files to rewrite for proper app URL handling
- Fixes 403 errors when accessing /apps/* URLs after authentication
- All URLs now properly route through index.php

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
CyberMind-FR 2026-02-16 08:17:49 +01:00
parent 5b6bf8560a
commit 2bc2eac994

View File

@ -438,7 +438,7 @@ server {
} }
location / { location / {
try_files $uri $uri/ /index.php$request_uri; rewrite ^ /index.php\$request_uri last;
} }
} }
NGINX NGINX