From 16eb3295bb7e7ba833d1692d2dac9afb91383e4b Mon Sep 17 00:00:00 2001 From: Ole-Morten Date: Wed, 2 Apr 2025 14:48:54 +0200 Subject: [PATCH 1/4] Update env --- hub/documentation/operations/files/env | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hub/documentation/operations/files/env b/hub/documentation/operations/files/env index ae3651a7f9..2bfe73da1d 100644 --- a/hub/documentation/operations/files/env +++ b/hub/documentation/operations/files/env @@ -1,5 +1,6 @@ # run: `id -u sesam` to find correct USER_ID # APPLIANCE_ID can be created using uuidgen +# NODE_DOMAIN must match your host envirnoment domain. APPLIANCE_ID=your_appliance_id SUBSCRIPTION_ID=your_subscription_id TRAEFIK_DOCKER_IMAGE_TAG=latest @@ -7,3 +8,4 @@ SESAM_NODE_IMAGE_TAG=weekly-prod FLUENTBIT_IMAGE_TAG=latest FLUENTBIT_HOST=ss-companyhub.sesam.cloud USER_ID=1000 +NODE_DOMAIN=your_node_domain From 5d84e467efa44f51c37c5eba75980358b56cceac Mon Sep 17 00:00:00 2001 From: Ole-Morten Date: Wed, 2 Apr 2025 15:26:55 +0200 Subject: [PATCH 2/4] Update env --- hub/documentation/operations/files/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/documentation/operations/files/env b/hub/documentation/operations/files/env index 2bfe73da1d..7922d066a1 100644 --- a/hub/documentation/operations/files/env +++ b/hub/documentation/operations/files/env @@ -1,6 +1,6 @@ # run: `id -u sesam` to find correct USER_ID # APPLIANCE_ID can be created using uuidgen -# NODE_DOMAIN must match your host envirnoment domain. +# NODE_DOMAIN must match your host fully qualified domain name. APPLIANCE_ID=your_appliance_id SUBSCRIPTION_ID=your_subscription_id TRAEFIK_DOCKER_IMAGE_TAG=latest From 8be86735ccbd3b3cd7fbf78a0886f07b1447d621 Mon Sep 17 00:00:00 2001 From: Ole-Morten Date: Wed, 2 Apr 2025 15:32:43 +0200 Subject: [PATCH 3/4] Update env --- hub/documentation/operations/files/env | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hub/documentation/operations/files/env b/hub/documentation/operations/files/env index 7922d066a1..346d5706a8 100644 --- a/hub/documentation/operations/files/env +++ b/hub/documentation/operations/files/env @@ -1,6 +1,7 @@ # run: `id -u sesam` to find correct USER_ID # APPLIANCE_ID can be created using uuidgen # NODE_DOMAIN must match your host fully qualified domain name. +# DNS_ADMIN variable is where any cert or dns issues will be sent from letsencrypt. APPLIANCE_ID=your_appliance_id SUBSCRIPTION_ID=your_subscription_id TRAEFIK_DOCKER_IMAGE_TAG=latest @@ -9,3 +10,4 @@ FLUENTBIT_IMAGE_TAG=latest FLUENTBIT_HOST=ss-companyhub.sesam.cloud USER_ID=1000 NODE_DOMAIN=your_node_domain +DNS_ADMIN=valid@email.address From d3d344d1e234449ca7842e4e3b91957ee624bcac Mon Sep 17 00:00:00 2001 From: Ole-Morten Date: Wed, 2 Apr 2025 15:33:30 +0200 Subject: [PATCH 4/4] Update docker-compose.yaml --- hub/documentation/operations/files/docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub/documentation/operations/files/docker-compose.yaml b/hub/documentation/operations/files/docker-compose.yaml index 7a681de624..dde6efda0f 100644 --- a/hub/documentation/operations/files/docker-compose.yaml +++ b/hub/documentation/operations/files/docker-compose.yaml @@ -24,7 +24,7 @@ services: - "--entrypoints.websecure.address=:443" - "--certificatesresolvers.myleresolver.acme.httpchallenge=true" - "--certificatesresolvers.myleresolver.acme.httpchallenge.entrypoint=web" - - "--certificatesresolvers.myleresolver.acme.email=dnsadmin@yourdomain.com" # Update this to be a valid email + - "--certificatesresolvers.myleresolver.acme.email=${DNS_ADMIN}" - "--certificatesresolvers.myleresolver.acme.storage=/letsencrypt/acme.json" - "--entrypoints.web.http.redirections.entryPoint.to=websecure" - "--entrypoints.web.http.redirections.entryPoint.scheme=https"