Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
macrdel
/
sentiment-summarize-youtube-comms
like
0
Runtime error
App
Files
Files
Community
898bea3
sentiment-summarize-youtube-comms
/
nginx
/
nginx.conf
macrdel
update workflow
898bea3
6 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;
}
}