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
Fetching metadata from the HF Docker repository...
06aca80
sentiment-summarize-youtube-comms
/
nginx
/
nginx.conf
macrdel
update workflow
898bea3
10 months ago
raw
Copy download link
history
blame
Safe
168 Bytes
upstream
backend {
server
app:
8000
;
server
app2:
8000
;
}
server
{
listen
80
;
server_name
_;
location
/ {
proxy_pass
http://backend;
}
}