18 lines
551 B
Plaintext
18 lines
551 B
Plaintext
# Resolve all *.clarity.local subdomains to the loopback address.
|
|
# nginx (bound to port 80 on the host) then routes by subdomain to the correct tenant container.
|
|
address=/.clarity.test/127.0.0.1
|
|
|
|
# Don't read /etc/resolv.conf or /etc/hosts from the container — we are the resolver
|
|
no-resolv
|
|
no-hosts
|
|
|
|
# Forward everything that isn't clarity.local to Cloudflare DNS
|
|
server=1.1.1.1
|
|
server=8.8.8.8
|
|
|
|
# Listen on all interfaces inside the container
|
|
listen-address=0.0.0.0
|
|
|
|
# Log queries — useful during initial setup, can be removed later
|
|
log-queries
|