mirror of
https://github.com/fosrl/docs.git
synced 2025-05-17 07:27:57 +01:00
add quotes to strings in config
This commit is contained in:
parent
09fc548bf1
commit
a01a136324
1 changed files with 17 additions and 17 deletions
|
@ -160,30 +160,30 @@ Pangolin is configured using a `config.yml` file. The file is expected to be mou
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
app:
|
app:
|
||||||
dashboard_url: https://example.com
|
dashboard_url: "https://example.com"
|
||||||
base_domain: example.com
|
base_domain: "example.com"
|
||||||
log_level: info
|
log_level: "info"
|
||||||
save_logs: false
|
save_logs: false
|
||||||
|
|
||||||
server:
|
server:
|
||||||
external_port: 3000
|
external_port: 3000
|
||||||
internal_port: 3001
|
internal_port: 3001
|
||||||
next_port: 3002
|
next_port: 3002
|
||||||
internal_hostname: pangolin
|
internal_hostname: "pangolin"
|
||||||
secure_cookies: true
|
secure_cookies: true
|
||||||
session_cookie_name: p_session
|
session_cookie_name: "p_session"
|
||||||
resource_session_cookie_name: p_resource_session
|
resource_session_cookie_name: "p_resource_session"
|
||||||
resource_access_token_param: p_token
|
resource_access_token_param: "p_token"
|
||||||
|
|
||||||
traefik:
|
traefik:
|
||||||
cert_resolver: letsencrypt
|
cert_resolver: "letsencrypt"
|
||||||
http_entrypoint: web
|
http_entrypoint: "web"
|
||||||
https_entrypoint: websecure
|
https_entrypoint: "websecure"
|
||||||
prefer_wildcard_cert: true
|
prefer_wildcard_cert: true
|
||||||
|
|
||||||
gerbil:
|
gerbil:
|
||||||
start_port: 51820
|
start_port: 51820
|
||||||
base_endpoint: example.com
|
base_endpoint: "example.com"
|
||||||
use_subdomain: false
|
use_subdomain: false
|
||||||
block_size: 24
|
block_size: 24
|
||||||
site_block_size: 30
|
site_block_size: 30
|
||||||
|
@ -195,16 +195,16 @@ rate_limits:
|
||||||
max_requests: 100
|
max_requests: 100
|
||||||
|
|
||||||
email:
|
email:
|
||||||
smtp_host: host.hoster.net
|
smtp_host: "host.hoster.net"
|
||||||
smtp_port: 587
|
smtp_port: 587
|
||||||
smtp_user: no-reply@example.com
|
smtp_user: "no-reply@example.com"
|
||||||
smtp_pass: aaaaaaaaaaaaaaaaaa
|
smtp_pass: "aaaaaaaaaaaaaaaaaa"
|
||||||
no_reply: no-reply@example.com
|
no_reply: "no-reply@example.com"
|
||||||
|
|
||||||
users:
|
users:
|
||||||
server_admin:
|
server_admin:
|
||||||
email: admin@example.com
|
email: "admin@example.com"
|
||||||
password: Password123!
|
password: "Password123!"
|
||||||
|
|
||||||
flags:
|
flags:
|
||||||
require_email_verification: true
|
require_email_verification: true
|
||||||
|
|
Loading…
Reference in a new issue