Compare commits
11 Commits
a874b7fbeb
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
76497a76c9 | ||
|
eea7e8f06d | ||
|
908b432ac4 | ||
|
10a95bee59 | ||
|
fe495e3559 | ||
|
bec2ea33a2 | ||
|
68075f2b8f | ||
|
522383945c | ||
|
8a3439d4bc | ||
|
e8665da2a9 | ||
|
2e99bfcfaf |
0
.zed/settings.json
Normal file
0
.zed/settings.json
Normal file
@@ -22,6 +22,12 @@
|
||||
icon: si:mailboxdotorg
|
||||
hide-arrow: yes
|
||||
|
||||
- type: releases
|
||||
show-source-icon: true
|
||||
repositories:
|
||||
- mollyim/mollysocket
|
||||
- mailcow/mailcow-dockerized
|
||||
|
||||
- size: full
|
||||
widgets:
|
||||
- type: monitor
|
||||
@@ -95,4 +101,4 @@
|
||||
label: Rome
|
||||
|
||||
- type: calendar
|
||||
first-day-of-week: monday
|
||||
first-day-of-week: monday
|
||||
|
@@ -1,3 +1,6 @@
|
||||
# I certificati si trovano in
|
||||
# /var/lib/caddy/.local/share/caddy/certificates/acme-v02.api.letsencrypt.org-directory/
|
||||
|
||||
# The Caddyfile is an easy way to configure your Caddy web server.
|
||||
|
||||
# Imposta il livello di log globale
|
||||
@@ -174,17 +177,18 @@ https://molly.novemila.org {
|
||||
|
||||
# SNIKKET
|
||||
|
||||
http://chat.novemila.org,
|
||||
http://groups.chat.novemila.org,
|
||||
http://share.chat.novemila.org {
|
||||
reverse_proxy localhost:5080
|
||||
}
|
||||
#http://chat.novemila.org,
|
||||
#http://groups.chat.novemila.org,
|
||||
#http://share.chat.novemila.org {
|
||||
# reverse_proxy localhost:5080
|
||||
#}
|
||||
|
||||
chat.novemila.org,
|
||||
groups.chat.novemila.org,
|
||||
share.chat.novemila.org {
|
||||
reverse_proxy https://localhost:5443 {
|
||||
transport http {
|
||||
tls_insecure_skip_verify
|
||||
}
|
||||
}
|
||||
#chat.novemila.org,
|
||||
#groups.chat.novemila.org,
|
||||
#share.chat.novemila.org {
|
||||
# reverse_proxy https://localhost:5443 {
|
||||
# transport http {
|
||||
# tls_insecure_skip_verify
|
||||
# }
|
||||
# }
|
||||
#}
|
@@ -11,12 +11,12 @@ TZ=Europe/Rome
|
||||
|
||||
# The Immich version to use. You can pin this to a specific version like "v1.71.0"
|
||||
IMMICH_VERSION=release
|
||||
DB_SKIP_MIGRATIONS=true
|
||||
|
||||
# Connection secret for postgres. You should change it to a random password
|
||||
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
||||
DB_PASSWORD=
|
||||
|
||||
# The values below this line do not need to be changed
|
||||
###################################################################################
|
||||
DB_USERNAME=postgres
|
||||
DB_DATABASE_NAME=immich
|
||||
|
@@ -11,7 +11,7 @@ services:
|
||||
cpus: 0.5
|
||||
volumes:
|
||||
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||
- ${UPLOAD_LOCATION}:/data
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .env
|
||||
@@ -44,7 +44,7 @@ services:
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:ff21bc0f8194dc9c105b769aeabf9585fea6a8ed649c0781caeac5cb3c247884
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:facc1d2c3462975c34e10fccb167bfa92b0e0dbd992fc282c29a61c3243afb11
|
||||
mem_limit: 128m
|
||||
labels:
|
||||
- "com.centurylinklabs.watchtower.enable=false"
|
||||
@@ -56,8 +56,10 @@ services:
|
||||
|
||||
database:
|
||||
container_name: immich_postgres
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:5f6a838e4e44c8e0e019d0ebfe3ee8952b69afc2809b2c25f7b0119641978e91
|
||||
mem_limit: 512m
|
||||
labels:
|
||||
- "com.centurylinklabs.watchtower.enable=false"
|
||||
environment:
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_USER: ${DB_USERNAME}
|
||||
@@ -66,6 +68,8 @@ services:
|
||||
volumes:
|
||||
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
|
||||
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
|
||||
shm_size: 128mb
|
||||
restart: always
|
||||
|
||||
volumes:
|
||||
model-cache:
|
@@ -116,11 +116,11 @@
|
||||
"enabled": true,
|
||||
"maxDistance": 0.01
|
||||
},
|
||||
"enabled": false,
|
||||
"enabled": true,
|
||||
"facialRecognition": {
|
||||
"enabled": true,
|
||||
"maxDistance": 0.5,
|
||||
"minFaces": 3,
|
||||
"minFaces": 2,
|
||||
"minScore": 0.7,
|
||||
"modelName": "buffalo_l"
|
||||
},
|
||||
@@ -161,7 +161,7 @@
|
||||
"buttonText": "Login with OAuth",
|
||||
"clientId": "",
|
||||
"clientSecret": "",
|
||||
"defaultStorageQuota": 0,
|
||||
"defaultStorageQuota": null,
|
||||
"enabled": false,
|
||||
"issuerUrl": "",
|
||||
"mobileOverrideEnabled": false,
|
||||
@@ -178,7 +178,7 @@
|
||||
"enabled": true
|
||||
},
|
||||
"reverseGeocoding": {
|
||||
"enabled": true
|
||||
"enabled": false
|
||||
},
|
||||
"server": {
|
||||
"externalDomain": "",
|
||||
|
Reference in New Issue
Block a user