mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-05 10:35:18 +02:00
43 lines
1 KiB
YAML
43 lines
1 KiB
YAML
# To see all available options, please visit the docs:
|
|
# https://docs.fossorial.io/Pangolin/Configuration/config
|
|
|
|
app:
|
|
dashboard_url: "https://{{.DashboardDomain}}"
|
|
log_level: "info"
|
|
|
|
domains:
|
|
domain1:
|
|
base_domain: "{{.BaseDomain}}"
|
|
cert_resolver: "letsencrypt"
|
|
|
|
server:
|
|
secret: "{{.Secret}}"
|
|
cors:
|
|
origins: ["https://{{.DashboardDomain}}"]
|
|
methods: ["GET", "POST", "PUT", "DELETE", "PATCH"]
|
|
allowed_headers: ["X-CSRF-Token", "Content-Type"]
|
|
credentials: false
|
|
|
|
gerbil:
|
|
start_port: 51820
|
|
base_endpoint: "{{.DashboardDomain}}"
|
|
|
|
orgs:
|
|
block_size: 24
|
|
subnet_group: 100.89.138.0/20
|
|
|
|
{{if .EnableEmail}}
|
|
email:
|
|
smtp_host: "{{.EmailSMTPHost}}"
|
|
smtp_port: {{.EmailSMTPPort}}
|
|
smtp_user: "{{.EmailSMTPUser}}"
|
|
smtp_pass: "{{.EmailSMTPPass}}"
|
|
no_reply: "{{.EmailNoReply}}"
|
|
{{end}}
|
|
|
|
flags:
|
|
require_email_verification: {{.EnableEmail}}
|
|
disable_signup_without_invite: true
|
|
disable_user_create_org: false
|
|
allow_raw_resources: true
|
|
allow_base_domain_resources: true
|