Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
andreped
/
wsi-annotation-demo
like
1
Sleeping
App
Files
Files
Community
96434cc
wsi-annotation-demo
/
nginx.conf
andreped
Added nginx conf
69c2441
26 days ago
raw
Copy download link
history
blame
Safe
243 Bytes
pid
/tmp/nginx.pid;
events
{
worker_connections
1024
;
}
http
{
server
{
listen
7860
;
server_name
localhost;
location
/ {
root
/usr/share/nginx/html;
index
index.html;
}
}
}