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
2025-07-13 21:37:56 +03:00

21 lines
279 B
Plaintext

{
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
}
}