Summary
Airbyte setup behind nginx proxy causing unauthorized errors when clicking ‘get started’. Possible issue with proxy configuration.
Question
I’ve set up airbyte (using abctl) behind nginx and am able to load the main page, but I’m getting unauthorized errors when I try to click “get started”. I think this is maybe due to the proxy configuration? Any idea how I can get this working? My nginx proxy config is as follows:
listen 443 ssl;
server_name <http://my.domain.com|my.domain.com>;
client_max_body_size 200M;
ssl_certificate /etc/ssl/certs/airbyte.crt.pem;
ssl_certificate_key /etc/ssl/certs/airbyte.key.pem;
location / {
proxy_pass <http://localhost:8000>;
proxy_set_header Cookie $http_cookie;
proxy_read_timeout 3600;
}
}```
<br>
---
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. [Click here](https://airbytehq.slack.com/archives/C021JANJ6TY/p1725392050319629) if you want
to access the original thread.
[Join the conversation on Slack](https://slack.airbyte.com)
<sub>
["airbyte", "nginx-proxy", "unauthorized-errors", "proxy-configuration"]
</sub>