Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
33 views

I’m having a problem and I can’t find a solution. I have deployed a Django backend and a React frontend using Docker. I’m using Traefik as a reverse proxy for the web server. When I start Traefik, the ...
Mario Petkovski's user avatar
1 vote
1 answer
136 views

I'm trying to deploy a Django app with Gunicorn and Nginx under a subpath, I'm inside a corporate network, and the path www.example.com/myapp points to the IP 192.168.192.77:8080 of my PC on the local ...
csong's user avatar
  • 11
0 votes
1 answer
68 views

I have a Flask application running on Gunicorn with 2 workers and 2 threads each (4 concurrent execution contexts). My custom logging function writes to a file without any process-level locking: def ...
user29255210's user avatar
1 vote
1 answer
37 views

Historically, i usually run all of my Flask/Gunicorn apps with the following command in my dockerfile: CMD ["gunicorn", "app.wsgi:app", "--config", "app/...
Matthew Dezzi's user avatar
0 votes
1 answer
46 views

class FGAClientWrapper: """ A synchronous, gevent-friendly wrapper for the async OpenFGA SDK. """ def __init__(self, call_timeout: float | None = 10.0): ...
vaibhav's user avatar
  • 18
0 votes
2 answers
80 views

I'm trying to deploy a Django project with Gunicorn and Apache. The gunicorn is configured and working --> no problem on this side The problem is with the statics files, i configure an apache conf :...
Jules SMITHSON's user avatar
0 votes
0 answers
42 views

I've built a Flask application that uses a background thread to process user-uploaded documents for a RAG (Retrieval-Augmented Generation) pipeline. The goal is to provide a fast response to the user ...
CoolDocMan's user avatar
0 votes
0 answers
112 views

I have a Django website running in a Docker container (Debian), which I deploy with the following command: gunicorn core.wsgi:application --bind 0.0.0.0:8000 --workers 33 --worker-class gevent --...
Michael Nikitin's user avatar
0 votes
0 answers
195 views

Anyone using Django + Gunicorn + Gevent + Opentelemetry in production? Would love to know how you got it to work. Seems like I can't seem to use BatchSpanProcessor or BatchLogRecordProcessor. I'm ...
Sai Chander's user avatar
4 votes
1 answer
155 views

I have a code like this that caches a page for 60 minutes: import os import time from django.conf import settings from django.core.cache import cache from django.core.mail import send_mail from django....
Denzel's user avatar
  • 449
1 vote
0 answers
197 views

I have a Flask app that uses Gunicorn/Nginx + ChromaDB v1.0.8. I've had no issues with its functionality till today when I restarted the service, to which I would receive May 06 19:33:34 cluster ...
idris's user avatar
  • 1,078
1 vote
0 answers
81 views

On an Ubuntu VPS, I run a FlaskRestX API with Gunicorn as a production server, managed by systemctl. I did a code base change, and restarted the server: sudo systemctl restart gunicorn This was my ...
Nils Deschrijver's user avatar
0 votes
1 answer
151 views

I have django App that also runs some Javascript templates with node. I'm struggling to run Gunicorn as the CMD of the Dockerfile. Here is my dockerfile: FROM node:22.12.0-alpine3.21 RUN mkdir /app ...
rgralma's user avatar
  • 145
2 votes
1 answer
100 views

I can't find a way to serve our large Django application using all three of preload, ASGI, and SO_REUSEPORT. Without preload and fork we use much more memory (gigabytes). Without ASGI we can't serve ...
Beau's user avatar
  • 11.5k
0 votes
0 answers
5 views

Ik heb een probleem met mijn TypeScript-code. Ik probeer npm start uit te voeren, maar er gebeurt niets. Wat ik verwacht: Dat mijn script uitvoert en de console.log statements laat zien. Wat er ...
Ha Ja's user avatar
  • 1
1 vote
1 answer
105 views

We have a service with this architecture: HTTPS requests come into an A10 load balancer that does L4 load balancing Behind it are 2 backend servers with Apache running that terminate the TLS ...
moritz's user avatar
  • 12.7k
0 votes
1 answer
50 views

L.S. I am working on my first Django project and struggling with the Stripe integration. My webhook is acting inconsistently—it worked fine when running locally on localhost with the Stripe CLI. ...
TSG16's user avatar
  • 1
1 vote
2 answers
114 views

I'm new to Render , and I make a simple flask web socket I use these modules: ,flask_socketio ,flask ,gunicorn (to run my script on Render host) Here is my code for server side: from flask import ...
International programmer's user avatar
0 votes
0 answers
53 views

I have a flask application that I run with Gunicorn. The application itself would ideally be run with multiple workers. I also have some data I need to consume from Kafka, but that should only be one ...
Vincent Guttmann's user avatar
0 votes
0 answers
44 views

Overview: I would like advice on setting up a reverse proxy so that my Google Cloud Run Python app hosted at example.com proxies content from our Kinsta installation hosted at myblog.kinsta.cloud. For ...
duchesd1's user avatar
3 votes
0 answers
156 views

I have a FastAPI application with multiple endpoints, and each endpoint uses certain memory intensive objects (ML models). This works fine when I only have one worker, but I am worried about memory ...
jdm's user avatar
  • 10.3k
0 votes
1 answer
125 views

I'm deploying a Django app on Azure Web App using Gunicorn and keep getting a 502 Bad Gateway error. Despite binding to the correct port, setting up environment variables for Key Vault, and enabling ...
Ollie's user avatar
  • 13
1 vote
1 answer
55 views

I'm following this (very good) DigitalOcean tutorial on how to serve a Flask app using Gunicorn, but cannot get Systemd to run with myproject.service. I've created a python environment (venv), pip ...
Doug Conran's user avatar
-1 votes
1 answer
32 views

I have in my Dockerfile : CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "3", "nerul.wsgi:application"] But docker run -p 8000:...
anjanesh's user avatar
  • 4,291
0 votes
1 answer
41 views

I'm building a Flask web application where users can record and submit 30 seconds of audio (WebM format) through a form. However, when I try to submit a 30-second recording (~650 KB), I get a 413 ...
Gavin Reid's user avatar

1
2 3 4 5
93