mirror of
https://github.com/PABannier/bark.cpp
synced 2026-03-03 05:30:35 +01:00
13 lines
292 B
Nginx Configuration File
13 lines
292 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
client_max_body_size 10M;
|
|
large_client_header_buffers 4 512k;
|
|
|
|
add_header Cross-Origin-Embedder-Policy 'require-corp' always;
|
|
add_header Cross-Origin-Opener-Policy 'same-origin' always;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
}
|