This repository has been archived on 2026-01-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cover-letter-templater/caddy/prod

21 lines
279 B
Plaintext
Raw Normal View History

2025-07-03 15:04:27 +03:00
{
admin off
auto_https off
}
:8080 {
encode
# Proxy to backend
handle_path /api* {
reverse_proxy backend:8080
}
# Server static files
handle_path /* {
root * /app
try_files {path} /index.html
file_server
}
}