Add /auth/ location to nginx proxy config

The /auth/ path was not being proxied to Django, causing POST
requests to authentication endpoints to return 405 errors.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
poduck
2025-12-30 11:10:46 -05:00
parent 1d1cfbb164
commit f13a40e4bc

View File

@@ -54,6 +54,15 @@ http {
proxy_set_header X-Forwarded-Proto $scheme;
}
# Proxy Auth requests to Django
location /auth/ {
proxy_pass http://django:5000;
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 Admin requests to Django
location /admin/ {
proxy_pass http://django:5000;