WebChatV2/docker-entrypoint.sh

11 lines
196 B
Bash
Raw Normal View History

#!/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;'