can't see fastAPI documentation with 2 main.py and 1 nginx reverse proxy
I'm using fastAPI together with nginx, as a reverse proxy. I split APIs into 2 different main.py with different endpoints: main.py -> main location/endopoint of APIs: / (port 5010) main_slow.py -> main location/endopoint of APIs: /slow_api (port 5011) to run…