Hello! I'm completely new to Nginx, trying to depl...
# ask-community-for-troubleshooting
i
Hello! I'm completely new to Nginx, trying to deploy airbyte over http (at first) It works perfectly with configuration like this events {} http { server { listen 80 default_server; location / { auth_basic "airbyte"; auth_basic_user_file /etc/nginx/.htpasswd; proxy_pass http://127.0.0.1:8000; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_cache_bypass $http_upgrade; } } } but when I try to change the URI to something like location /airbyte, it throws such an error. Could you help me to figure out, what's the problem is?
👀 1
u
Hi @Ilya Eydlin, I'd suggest you to check nginx's logs + network logs in your browser to debug your current error and find a way to troubleshoot it.