# Plain HTTP on :80 (mapped to host port 8090 by docker-compose.yml). No TLS here — the user's
# Nginx Proxy Manager instance is a separate concern and explicitly out of scope for Phase 0; this
# is reachable directly at http://192.168.0.103:8090.
:80 {
	handle /api/* {
		reverse_proxy api:8000
	}

	handle {
		root * /srv/web
		try_files {path} /index.html
		file_server
	}
}
