Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
macrdel
/
sentiment-summarize-youtube-comms
like
0
Runtime error
App
Files
Files
Community
366a813
sentiment-summarize-youtube-comms
/
config
/
nginx.conf
macrdel
add nginx grafana workflows
92678a7
6 months ago
raw
Copy download link
history
blame
Safe
127 Bytes
upstream
backend {
server
app:
8000
;
}
server
{
listen
80
;
location
/ {
proxy_pass
http://backend;
}
}