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

ci: nginx templates

This commit is contained in:
Artem Litvinov
2023-09-22 16:56:00 +01:00
parent dc4a15a254
commit 0923015894
8 changed files with 49 additions and 38 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:${SERVER_PORT}/api;
proxy_set_header X-Request-Id $request_id;
}
}