Files
customer-frontend/landing-react/nginx.conf.example
wm 3118943b2e feat: React-Landingpage (Vite + TypeScript + Tailwind) hinzugefügt
Originalgetreue Migration der HTML-Landingpage in eine React-SPA.
Registrierungsformular mit Webhook-Integration und n8n-Response-Anzeige.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-17 08:03:23 +01:00

18 lines
708 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Diesen Block in eure bestehende Nginx-Server-Konfiguration einfügen.
# Er proxyt /api/register an n8n weiter kein CORS-Problem, da der
# Request serverseitig von eurer eigenen Domain abgeht.
location /api/register {
proxy_pass https://n8n.zq0.de/webhook-test/test;
proxy_http_version 1.1;
proxy_set_header Host n8n.zq0.de;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Timeout auf 5 Minuten setzen n8n kann lange brauchen
proxy_read_timeout 300s;
proxy_connect_timeout 10s;
proxy_send_timeout 300s;
}