mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-05-24 22:43:26 +00:00
11 lines
255 B
Plaintext
11 lines
255 B
Plaintext
server {
|
|
listen ${NGINX_PORT} default_server;
|
|
listen [::]:${NGINX_PORT} default_server;
|
|
server_name _;
|
|
|
|
location /api {
|
|
proxy_pass http://api:${API_PORT}/api;
|
|
proxy_set_header X-Request-Id $request_id;
|
|
}
|
|
|
|
} |