Use localhost for SMTP instead of Docker bridge IP
Change SMTP host from 172.18.0.1 to localhost to properly connect to Cloudron's sendmail relay running inside the container.
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
"contactEmail": "contact@ente.io",
|
"contactEmail": "contact@ente.io",
|
||||||
"website": "https://ente.io",
|
"website": "https://ente.io",
|
||||||
"tagline": "Open source, end-to-end encrypted photo backup",
|
"tagline": "Open source, end-to-end encrypted photo backup",
|
||||||
"version": "0.3.4",
|
"version": "0.3.5",
|
||||||
"upstreamVersion": "git-main",
|
"upstreamVersion": "git-main",
|
||||||
"healthCheckPath": "/health",
|
"healthCheckPath": "/health",
|
||||||
"httpPort": 3080,
|
"httpPort": 3080,
|
||||||
|
|||||||
2
start.sh
2
start.sh
@@ -122,7 +122,7 @@ HASH_KEY_FILE="$SECRETS_DIR/hash_key"
|
|||||||
JWT_SECRET_FILE="$SECRETS_DIR/jwt_secret"
|
JWT_SECRET_FILE="$SECRETS_DIR/jwt_secret"
|
||||||
SESSION_SECRET_FILE="$SECRETS_DIR/session_secret"
|
SESSION_SECRET_FILE="$SECRETS_DIR/session_secret"
|
||||||
|
|
||||||
SMTP_HOST="172.18.0.1"
|
SMTP_HOST="localhost"
|
||||||
SMTP_PORT="2525"
|
SMTP_PORT="2525"
|
||||||
SMTP_ENCRYPTION=""
|
SMTP_ENCRYPTION=""
|
||||||
SMTP_USERNAME=""
|
SMTP_USERNAME=""
|
||||||
|
|||||||
Reference in New Issue
Block a user