1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-12-16 14:36:17 +00:00

Basic Docker files

This commit is contained in:
Artem Litvinov
2023-09-16 10:36:39 +01:00
parent 848e7f059f
commit 4ee32cfb3f
7 changed files with 112 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
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;
}
}