small changes

This commit is contained in:
2025-10-14 23:01:01 +01:00
parent aee12cb2ec
commit 50b848d2dc
3 changed files with 12 additions and 1 deletions

View File

@@ -118,6 +118,7 @@ services:
- VIRTUAL_PORT=9980 - VIRTUAL_PORT=9980
- "DONT_GEN_SSL_CERT=True" - "DONT_GEN_SSL_CERT=True"
- domain=tower.${DOMAIN} - domain=tower.${DOMAIN}
- "aliasgroup1=https://tower.${DOMAIN}"
- cert_domain=office.${DOMAIN} - cert_domain=office.${DOMAIN}
- server_name=office.${DOMAIN} - server_name=office.${DOMAIN}
- username=${COLLABORA_USER} - username=${COLLABORA_USER}

View File

@@ -1,4 +1,4 @@
FROM nextcloud:30-fpm-alpine FROM nextcloud:32-fpm-alpine
RUN set -ex; \ RUN set -ex; \
\ \

View File

@@ -131,6 +131,16 @@ http {
# This module is currently not supported. # This module is currently not supported.
#pagespeed off; #pagespeed off;
# Set .mjs and .wasm MIME types
# Either include it in the default mime.types list
# and include that list explicitly or add the file extension
# only for Nextcloud like below:
include mime.types;
types {
text/javascript mjs;
application/wasm wasm;
}
location / { location / {
rewrite ^ /index.php; rewrite ^ /index.php;
} }