Skip to main content

All Questions

Tagged with
0 votes
1 answer
677 views

Django, Nginx, CORS issue when server behind upstream but if query server directly responds fine [duplicate]

I currently have the following nginx file server_tokens off; upstream backend { server unix:/home/www/api.to/app.sock weight=1; #server 1.2.3.4 weight=1; #server api3.example.com weight=1; ...
nadermx's user avatar
  • 795
2 votes
1 answer
6k views

Apache2 (reverse proxy) + Django + Gunicorn

I have a problem with my Apache2 web server as reverse proxy server. The simplified server setup with my domain "example.com" looks like this: If clients now go to the page https://example.com/...
Markus's user avatar
  • 23
1 vote
1 answer
348 views

Django + Daphne + Caddy + File Upload = 413 Error

I have a Django web application that is deployed, production, with Caddy. IN production, I use Caddy as a reverse proxy pointing to daphne which is pointing to my Django app. However, when I try to ...
RubyJ's user avatar
  • 111