Created
May 12, 2025 22:03
-
-
Save kingnebby/e566e1257726c576cbeebe7413b972e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
events {} | |
http { | |
server { | |
listen 80; | |
location / { | |
proxy_pass https://dan-jemini.app.n8n.cloud/webhook/dc3ee59d-b944-4e98-84a3-62ec583d63be/chat; | |
proxy_set_header Host $host; | |
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; | |
proxy_ssl_server_name on; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment