feat: add domain and install scripts for apps

This commit is contained in:
lolwierd
2026-03-27 19:32:47 +05:30
parent 442ae83280
commit 9b93d6898b
26 changed files with 900 additions and 13 deletions

View File

@@ -38,26 +38,26 @@ set_env "SIGNOZ_ALERTMANAGER_SIGNOZ_EXTERNAL_URL" "${URL}" ".services.signoz.env
cat > /etc/caddy/Caddyfile << EOF
${URL} {
reverse_proxy localhost:${APP_UPSTREAM_PORT}
reverse_proxy 127.0.0.1:${APP_UPSTREAM_PORT}
}
${URL}:4317 {
reverse_proxy h2c://localhost:44317
reverse_proxy h2c://127.0.0.1:44317
}
${URL}:4318 {
reverse_proxy localhost:44318
reverse_proxy 127.0.0.1:44318
}
# ${INTERNAL_URL} {
# reverse_proxy localhost:${APP_UPSTREAM_PORT}
# reverse_proxy 127.0.0.1:${APP_UPSTREAM_PORT}
# }
#
# ${INTERNAL_URL}:4317 {
# reverse_proxy h2c://localhost:44317
# reverse_proxy h2c://127.0.0.1:44317
# }
#
# ${INTERNAL_URL}:4318 {
# reverse_proxy localhost:44318
# reverse_proxy 127.0.0.1:44318
# }
EOF