diff --git a/Dockerfile b/Dockerfile index 8584cb28..b100b1f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ ENV VITE_RESTIC_VERSION=${RESTIC_VERSION} \ RUN apk update --no-cache && \ apk upgrade --no-cache && \ - apk add --no-cache davfs2=1.6.1-r2 openssh-client fuse3 sshfs tini cifs-utils util-linux + apk add --no-cache davfs2=1.6.1-r2 openssh-client fuse3 sshfs tini nfs-utils cifs-utils util-linux ENTRYPOINT ["/sbin/tini", "-s", "--"] diff --git a/app/lib/auth.ts b/app/lib/auth.ts index f35ac450..d2f60308 100644 --- a/app/lib/auth.ts +++ b/app/lib/auth.ts @@ -47,6 +47,9 @@ const createBetterAuth = (secret: string) => modelName: "sessionsTable", }, plugins: [username({})], + advanced: { + disableOriginCheck: true, + }, }); type Auth = ReturnType;