Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-05-25 17:04:54 +0300
committerJulius Härtl <jus@bitgrid.net>2020-05-25 17:04:54 +0300
commitbde5b9577b97234cf80adb3e7bc987913b3189ea (patch)
tree10ec8e5e3b8107503105a01458b98286f26f8ee4 /lib
parente57bca31adc9a2591357825fa7042596fcb51f7d (diff)
Update hub bundle and add proxy rule to htaccess
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/App/AppStore/Bundles/HubBundle.php4
-rw-r--r--lib/private/Setup.php1
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>";