Hello,
I have FastAPI running behind a reverse proxy with Circus, which works great. But I am curious why I'm not able to see the Web Dashboard that looks like it should automatically start up when I start Circus. I don't see any Circus processes in htop that look like they would be running the dashboard. It just hangs when I curl http://127.0.0.1:8080.
I'm using the basic tutorial from https://circus.readthedocs.io/en/latest/tutorial/step-by-step/#interaction and this is my circus.ini:
[circus]
statsd = 1
httpd = 1
[watcher:webapp]
cmd = venv/bin/uvicorn --fd $(circus.sockets.web) main:app
numprocesses = 3
use_sockets = True
[socket:web]
host = 127.0.0.1
port = 9999
Is it because i'm using Uvicorn instead of Chaussette? Thanks in advance for your help.
Hello,
I have FastAPI running behind a reverse proxy with Circus, which works great. But I am curious why I'm not able to see the Web Dashboard that looks like it should automatically start up when I start Circus. I don't see any Circus processes in htop that look like they would be running the dashboard. It just hangs when I curl http://127.0.0.1:8080.
I'm using the basic tutorial from https://circus.readthedocs.io/en/latest/tutorial/step-by-step/#interaction and this is my circus.ini:
Is it because i'm using Uvicorn instead of Chaussette? Thanks in advance for your help.