diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-05-25 16:04:54 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2020-05-25 19:52:22 +0000 |
commit | abecd5696bcfbe952533f87cbff929635520ff56 (patch) | |
tree | 7251a0b387e2b9a56b6325831e1d7954a313f8a5 /lib | |
parent | 33b06cfa0c81e8edb2163a8766eb8fe0aa51b14f (diff) | |
download | nextcloud-server-abecd5696bcfbe952533f87cbff929635520ff56.tar.gz nextcloud-server-abecd5696bcfbe952533f87cbff929635520ff56.zip |
Update hub bundle and add proxy rule to htaccess
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/App/AppStore/Bundles/HubBundle.php | 4 | ||||
-rw-r--r-- | lib/private/Setup.php | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/private/App/AppStore/Bundles/HubBundle.php b/lib/private/App/AppStore/Bundles/HubBundle.php index 18dd9093623..59b52389ef8 100644 --- a/lib/private/App/AppStore/Bundles/HubBundle.php +++ b/lib/private/App/AppStore/Bundles/HubBundle.php @@ -37,8 +37,8 @@ class HubBundle extends Bundle { 'contacts', 'calendar', 'mail', - 'documentserver_community', - 'onlyoffice', + 'richdocumentscode', + 'richdocuments', ]; } } diff --git a/lib/private/Setup.php b/lib/private/Setup.php index 3fc8415e29a..856ed1d7885 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -543,6 +543,7 @@ class Setup { $content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocs-provider/"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/ocm-provider/"; $content .= "\n RewriteCond %{REQUEST_URI} !^/\\.well-known/(acme-challenge|pki-validation)/.*"; + $content .= "\n RewriteCond %{REQUEST_FILENAME} !/richdocumentscode/proxy.php$"; $content .= "\n RewriteRule . index.php [PT,E=PATH_INFO:$1]"; $content .= "\n RewriteBase " . $rewriteBase; $content .= "\n <IfModule mod_env.c>"; |