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:
parent
5b6bf8560a
commit
2bc2eac994
@ -438,7 +438,7 @@ server {
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php$request_uri;
|
||||
rewrite ^ /index.php\$request_uri last;
|
||||
}
|
||||
}
|
||||
NGINX
|
||||
|
||||
Loading…
Reference in New Issue
Block a user