Compare commits

..

No commits in common. "6aa67c63b5d1d9d8277af17d50af9a9db7321023" and "74e06ec86db1f7fdf66c1d583181557ac2bf4511" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# -------------- Build-time variables -------------- # -------------- Build-time variables --------------
ARG NEXTCLOUD_VERSION=29.0.5 ARG NEXTCLOUD_VERSION=29.0.4
ARG PHP_VERSION=8.2 ARG PHP_VERSION=8.2
ARG NGINX_VERSION=1.26 ARG NGINX_VERSION=1.26
@ -10,8 +10,8 @@ ARG SNUFFLEUPAGUS_VERSION=0.10.0
ARG UID=1000 ARG UID=1000
ARG GID=1000 ARG GID=1000
# nextcloud-29.0.5.tar.bz2 # nextcloud-29.0.4.tar.bz2
ARG SHA256_SUM="c7fe9c61e5ec30a5e599e8f152a1825df684d30e899db0caa8868c8d67b53a2c" ARG SHA256_SUM="19c469e264b31ee80400f8396460854546569e88db4c15fc0854e192f96027eb"
# Nextcloud Security <security@nextcloud.com> (D75899B9A724937A) # Nextcloud Security <security@nextcloud.com> (D75899B9A724937A)
ARG GPG_FINGERPRINT="2880 6A87 8AE4 23A2 8372 792E D758 99B9 A724 937A" 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 {
location = /.well-known/carddav { 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/caldav { return 301 $nc_proto://$host/remote.php/dav; }
location ^~ /.well-known { return 301 $nc_proto://$host/index.php$uri; } location ^~ /.well-known { return 301 $nc_proto://$host/index.php$uri; }
try_files $uri $uri/ =404; try_files $uri $uri/ =404;
} }