Webhook giving 404 - Oops, couldn’t find that

Webhook giving 404 Error

webhook url gives Oops, couldn’t find that

below is my configurations

services:
  n8n:
    image: n8nio/n8n:1.78.0
    container_name: n8n
    restart: always
    environment:
      - N8N_SECURE_COOKIE=false
      - N8N_PORT=5678
      - N8N_PATH=/n8n
      - N8N_HOST=internal.domain.in
      - WEBHOOK_URL=https://internal.domain.in/n8n

below is my nginx config

location /n8n {
        auth_request /oauth2/auth;
        error_page 401 = /oauth2/start;
	proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
	auth_request_set $user   $upstream_http_x_auth_request_user;
        auth_request_set $email  $upstream_http_x_auth_request_email;
        proxy_set_header X-User  $user;
        proxy_set_header X-Email $email;
        auth_request_set $token  $upstream_http_x_auth_request_access_token;
        proxy_set_header X-Access-Token $token;
        proxy_pass http://10.2.12.2:5678/;
        proxy_set_header Host $host:$server_port;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

What URL are you trying to load when you get the error?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.