CoolFace
Apppublic

radames/nginx-gradio-reverse-proxy

sourceHugging Faceupdated 3y agoView on Hugging Face
26likes
run.sh7 linesDownload Raw Back to root
1#!/bin/bash2 3service nginx start4python -m http.server --directory ./static --bind 0.0.0.0 8000 & echo $! > http_server.pid5uvicorn "app:app" --port 7860 --host 0.0.0.06pkill -F http_server.pid7rm http_server.pid