Compare commits

..

2 Commits

2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# -------------- Build-time variables --------------
ARG NEXTCLOUD_VERSION=29.0.4
ARG NEXTCLOUD_VERSION=29.0.5
ARG PHP_VERSION=8.2
ARG NGINX_VERSION=1.26
@ -10,8 +10,8 @@ ARG SNUFFLEUPAGUS_VERSION=0.10.0
ARG UID=1000
ARG GID=1000
# nextcloud-29.0.4.tar.bz2
ARG SHA256_SUM="19c469e264b31ee80400f8396460854546569e88db4c15fc0854e192f96027eb"
# nextcloud-29.0.5.tar.bz2
ARG SHA256_SUM="c7fe9c61e5ec30a5e599e8f152a1825df684d30e899db0caa8868c8d67b53a2c"
# Nextcloud Security <security@nextcloud.com> (D75899B9A724937A)
ARG GPG_FINGERPRINT="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A"

View File

@ -30,8 +30,8 @@ server {
}
location ^~ /.well-known {
location = /.well-known/carddav { return 301 $nc_proto://$host/remote.php/dav; }
location = /.well-known/caldav { return 301 $nc_proto://$host/remote.php/dav; }
location = /.well-known/carddav { return 301 $nc_proto://$host/remote.php/dav/; }
location = /.well-known/caldav { return 301 $nc_proto://$host/remote.php/dav/; }
location ^~ /.well-known { return 301 $nc_proto://$host/index.php$uri; }
try_files $uri $uri/ =404;
}