mirror of
https://tangled.org/tranquil.farm/tranquil-pds
synced 2026-08-29 12:16:56 +00:00
Running tranquil with `just run-dev` using `pds.test` seems to be broken due to a recent change that blocks requests to private ips. Inside the compose network `pds.test` resolves to the traefik container's private IP. So it can't make requests to stuff like `https://pds.test/oauth-client-metadata.json` or the local plc. Introduces a new flag, default off, that allows connecting to private IPs, set to true for the dev compose.
33 lines
537 B
TOML
33 lines
537 B
TOML
[server]
|
|
hostname = "pds.test"
|
|
allow_http_proxy = true
|
|
allow_private_fetch = true
|
|
invite_code_required = false
|
|
disable_rate_limiting = true
|
|
|
|
[frontend]
|
|
enabled = true
|
|
dir = "/app/frontend/public"
|
|
|
|
[database]
|
|
url = "postgres://postgres:postgres@db:5432/pds"
|
|
max_connections = 20
|
|
|
|
[storage]
|
|
path = "/var/lib/tranquil-pds/blobs"
|
|
|
|
[plc]
|
|
directory_url = "http://plc:2582"
|
|
|
|
[email]
|
|
from_address = "noreply@pds.test"
|
|
from_name = "Tranquil PDS (Dev)"
|
|
|
|
[email.smarthost]
|
|
host = "mailpit"
|
|
port = 1025
|
|
tls = "none"
|
|
|
|
[secrets]
|
|
allow_insecure = true
|