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.
2025-07-03 15:04:27 +03:00
|
|
|
{
|
|
|
|
|
admin off
|
|
|
|
|
auto_https off
|
|
|
|
|
}
|
2025-07-03 21:58:49 +03:00
|
|
|
|
|
|
|
|
:8080 {
|
2025-07-10 20:36:37 +03:00
|
|
|
encode
|
2025-07-03 21:58:49 +03:00
|
|
|
|
2025-07-13 21:37:56 +03:00
|
|
|
# Proxy to backend
|
2025-07-03 21:58:49 +03:00
|
|
|
handle_path /api* {
|
|
|
|
|
reverse_proxy backend:8080
|
|
|
|
|
}
|
2025-07-13 21:37:56 +03:00
|
|
|
|
|
|
|
|
# Server static files
|
|
|
|
|
handle_path /* {
|
|
|
|
|
root * /app
|
|
|
|
|
try_files {path} /index.html
|
|
|
|
|
file_server
|
|
|
|
|
}
|
2025-07-03 21:58:49 +03:00
|
|
|
}
|