I tried install and connect to my local Quetz server (launch with Docker image retrieve in dockerhub mambaorg repo) with this simple command :
`curl http://localhost:8000
But the only response was "curl: (56) Recv failure: Connection reset by peer"
The Quetz server is well launched. It's a part of my server logs :
INFO: [quetz-cli] deploying quetz from directory /quetz-deployment
INFO: [quetz-cli] starting supervisor
WARNING: Current configuration will not reload as not all conditions are met, please refer to documentation.
INFO: [quetz] authentication provider 'pam' of class PAMAuthenticator registered
INFO: [quetz] Using basic fallback frontend
INFO: Started server process [23]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
For informations, I work in WSL2 environment and i try to curl from this environment. A netstat show that 8000 port is open and listen :
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 5141/docker-proxy
tcp6 0 0 :::8000 :::* LISTEN 5148/docker-proxy
If you have a solution i will be very very happy :D