Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
radames
/
nginx-gradio-reverse-proxy
like
23
Running
App
Files
Files
Community
3
2af848d
nginx-gradio-reverse-proxy
/
run.sh
radames
first
2af848d
almost 2 years ago
raw
Copy download link
history
blame
Safe
178 Bytes
#!/bin/bash
python -m http.server 8080 --directory ./static/ &
echo
$! > http_server.pid
uvicorn
"app:app"
--port 7860 --host 0.0.0.0
pkill -F http_server.pid
rm
http_server.pid