1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-05-24 14:33:26 +00:00
voice_assistant/src/fastapi_app/nginx/conf.d/site.conf
2023-09-19 17:16:30 +03:00

11 lines
176 B
Plaintext

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location /api {
proxy_pass http://api:8000/api;
}
}