mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 07:03:53 +08:00
46 lines
1.1 KiB
Nginx Configuration File
46 lines
1.1 KiB
Nginx Configuration File
worker_processes auto;
|
|
pid /tmp/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
access_log /dev/stdout;
|
|
error_log /dev/stderr warn;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
client_max_body_size 100m;
|
|
|
|
upstream manager_api_fastapi {
|
|
server ${MANAGER_API_UPSTREAM};
|
|
keepalive 32;
|
|
}
|
|
|
|
server {
|
|
listen 8002;
|
|
server_name _;
|
|
|
|
location = /xiaozhi {
|
|
return 308 /xiaozhi/;
|
|
}
|
|
|
|
location /xiaozhi/ {
|
|
proxy_pass http://manager_api_fastapi;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header Connection "";
|
|
proxy_connect_timeout 10s;
|
|
proxy_send_timeout 130s;
|
|
proxy_read_timeout 130s;
|
|
proxy_request_buffering off;
|
|
proxy_buffering off;
|
|
}
|
|
}
|
|
}
|