Draft role for Heriverse/Stratigraph

This commit is contained in:
2026-03-29 18:58:17 +02:00
parent 37d4e70d40
commit 73275530da
5 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{{ server_name }} {
# Don't show ATON's frontend home page
redir / /a/heriverse 302
request_body {
max_size 2GB # This can be made configurable
}
# `handle_path` is required where URIs must be rewritten
handle_path /server/* {
reverse_proxy localhost:3000
}
handle /auth* {
reverse_proxy localhost:8080
}
handle_path /couchdb/* {
reverse_proxy localhost:5984
}
handle /* {
reverse_proxy localhost:8081
}
}