DeFactOfficial commited on
Commit
59dff58
1 Parent(s): e3156f8

Update conf/nginx.conf

Browse files
Files changed (1) hide show
  1. conf/nginx.conf +5 -2
conf/nginx.conf CHANGED
@@ -42,7 +42,10 @@ server {
42
 
43
  # Required for HF Spaces health checks
44
  location / {
45
- return 200 'OK';
46
- add_header Content-Type text/plain;
 
 
 
47
  }
48
  }
 
42
 
43
  # Required for HF Spaces health checks
44
  location / {
45
+ proxy_pass http://localhost:6666;
46
+ proxy_buffering on;
47
+ proxy_buffer_size 128k;
48
+ proxy_buffers 4 256k;
49
+ proxy_busy_buffers_size 256k;
50
  }
51
  }