Hello! I want to setup domain for my app so I have added following NGINX configuration:
location /auth {
proxy_pass http://localhost:3567;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
But when I open https:///auth I receive text "Not found" instead of "Hello"
And when I start Node,js application I see error Error: SuperTokens core threw an error for a GET request to path: '/apiversion' with status code: 400 and message: AppId or tenantId not found => Tenant with the following connectionURIDomain, appId and tenantId combination not found: (, public, auth)
When I open http://:3567/ everything works
SuperTokens is an open source authentication solution offering features like: Different types of login: Email / password, Passwordless (OTP or Magic link based).