From cb1ccbe94544474a1e3089f98e90f87e8e3191f1 Mon Sep 17 00:00:00 2001 From: Milo Schwartz Date: Thu, 30 Jan 2025 17:15:07 -0500 Subject: [PATCH] update traefik_config example and remove quotes around smtp_port --- config/traefik/traefik_config.example.yml | 8 +------- install/fs/config.yml | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/config/traefik/traefik_config.example.yml b/config/traefik/traefik_config.example.yml index b822f493..01d05903 100644 --- a/config/traefik/traefik_config.example.yml +++ b/config/traefik/traefik_config.example.yml @@ -4,13 +4,7 @@ api: providers: http: - endpoint: "http://pangolin:3001/api/v1/traefik-config/http" - pollInterval: "5s" - udp: - endpoint: "http://pangolin:3001/api/v1/traefik-config/udp" - pollInterval: "5s" - tcp: - endpoint: "http://pangolin:3001/api/v1/traefik-config/tcp" + endpoint: "http://pangolin:{{.INTERNAL_PORT}}/api/v1/traefik-config" pollInterval: "5s" file: filename: "/etc/traefik/dynamic_config.yml" diff --git a/install/fs/config.yml b/install/fs/config.yml index 3ccec1e5..d2a2ffec 100644 --- a/install/fs/config.yml +++ b/install/fs/config.yml @@ -40,7 +40,7 @@ rate_limits: {{if .EnableEmail}} email: smtp_host: "{{.EmailSMTPHost}}" - smtp_port: "{{.EmailSMTPPort}}" + smtp_port: {{.EmailSMTPPort}} smtp_user: "{{.EmailSMTPUser}}" smtp_pass: "{{.EmailSMTPPass}}" no_reply: "{{.EmailNoReply}}"