1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-05-24 22:43:26 +00:00
voice_assistant/src/fastapi_example/nginx/templates/api.conf.template
2023-09-16 10:36:39 +01:00

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;
}
}