Files
windmill/examples/deploy/private-package-registry-tls/Caddyfile
Guillaume Bouvignies 2081e7a8ff chore: Add examples on how to deploy private registries (#2719)
* chore: Add examples on how to deploy private registries

* chore: example for private pypiserver with https

* Allow DENO_CERT certificate with native workers

* Add BUN_TLS_REJECT_UNAUTHORIZED
2023-11-29 11:38:23 +01:00

17 lines
398 B
Caddyfile

{$BASE_URL} {
bind {$ADDRESS}
tls /certs/caddy.crt /certs/caddy.key
handle_path /static/* {
root * /static/
file_server {
browse
}
}
handle_path /npm/* {
reverse_proxy * http://npm_registry:4873
}
handle_path /* {
reverse_proxy * http://pypi_server:8080
}
}