benjamin-paine
commited on
Commit
·
a48ebd4
1
Parent(s):
afd9c40
tune nginx, mini header
Browse files- README.md +1 -0
- config/nginx.conf +3 -3
README.md
CHANGED
@@ -7,6 +7,7 @@ sdk: docker
|
|
7 |
pinned: false
|
8 |
license: apache-2.0
|
9 |
short_description: Hands-Free AI Voice Chat with a Retro Vibe
|
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
7 |
pinned: false
|
8 |
license: apache-2.0
|
9 |
short_description: Hands-Free AI Voice Chat with a Retro Vibe
|
10 |
+
header: mini
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
config/nginx.conf
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
-
worker_processes
|
2 |
-
|
3 |
error_log stderr;
|
4 |
daemon off;
|
5 |
pid /app/nginx.pid;
|
6 |
|
7 |
events {
|
8 |
-
worker_connections
|
9 |
}
|
10 |
|
11 |
http {
|
|
|
1 |
+
worker_processes auto;
|
2 |
+
worker_cpu_affinity auto;
|
3 |
error_log stderr;
|
4 |
daemon off;
|
5 |
pid /app/nginx.pid;
|
6 |
|
7 |
events {
|
8 |
+
worker_connections 256;
|
9 |
}
|
10 |
|
11 |
http {
|