1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Merge pull request #340 from sebmennetrier/fix_app_element

Fix issues with Element (Riotchat) app
This commit is contained in:
Kayou 2020-10-26 12:10:45 +01:00 committed by GitHub
commit 23fe6c2e0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,6 +121,10 @@ location ^~ __PATH__/ {
rewrite ^ __PATH__/index.php$request_uri;
}
location ~* ^__PATH__/apps/riotchat/riot/ {
rewrite ^ __PATH__/index.php$request_uri;
}
# Adding the cache control header for js, css and map files
location ~ ^__PATH__/.+[^\/]\.(?:css|js|woff2?|svg|gif|map)$ {
try_files $uri __PATH__/index.php$request_uri;