WebChatV2/docker-entrypoint.sh
JRike24 f0f6db06c9
Some checks failed
build-and-push-image / build (push) Has been cancelled
ci: workflow Forgejo Actions para publicar imagen en registry + compose por env var N8N_WEBHOOK_URL
2026-06-27 21:35:48 -05:00

10 lines
196 B
Bash

#!/bin/sh
set -e
cat > /usr/share/nginx/html/config.js <<EOF
window.APP_CONFIG = {
N8N_WEBHOOK_URL: "${N8N_WEBHOOK_URL:-https://your-n8n-host/webhook/chat}"
};
EOF
exec nginx -g 'daemon off;'