diff options
author | Maxence Lange <maxence@artificial-owl.com> | 2023-10-02 14:38:10 -0100 |
---|---|---|
committer | Maxence Lange <maxence@artificial-owl.com> | 2023-10-02 14:38:10 -0100 |
commit | 39c39a0f609a6cef769e761b53f300589ff455db (patch) | |
tree | 0e5c54def1a8fc9ac148d1102e4105472702a291 /lib | |
parent | cd1d980fbdda9f9fd9ff03413f6c8b6d13c5c730 (diff) | |
download | nextcloud-server-39c39a0f609a6cef769e761b53f300589ff455db.tar.gz nextcloud-server-39c39a0f609a6cef769e761b53f300589ff455db.zip |
fix ocm-provider rewrite rules
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Setup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Setup.php b/lib/private/Setup.php index 0993fe54f47..f167d19adeb 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -537,7 +537,7 @@ class Setup { $content .= "\n RewriteCond %{REQUEST_FILENAME} !/(cron|public|remote|status)\\.php"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocs/v(1|2)\\.php"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/robots\\.txt"; - $content .= "\n RewriteCond %{REQUEST_FILENAME} !/(ocm-provider|ocs-provider|updater)/"; + $content .= "\n RewriteCond %{REQUEST_FILENAME} !/(ocs-provider|updater)/"; $content .= "\n RewriteCond %{REQUEST_URI} !^/\\.well-known/(acme-challenge|pki-validation)/.*"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/richdocumentscode(_arm64)?/proxy.php$"; $content .= "\n RewriteRule . index.php [PT,E=PATH_INFO:$1]"; |