57 lines
1.6 KiB
Plaintext
57 lines
1.6 KiB
Plaintext
# Lyngvo — тренажёр произношения
|
|
server {
|
|
listen 80;
|
|
server_name lang.kube5s.ru;
|
|
location /.well-known/acme-challenge/ { root /var/www/certbot; }
|
|
location / { return 301 https://$host$request_uri; }
|
|
}
|
|
server {
|
|
listen 443 ssl;
|
|
#http2 on;
|
|
server_name lang.kube5s.ru;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/lang.kube5s.ru/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/lang.kube5s.ru/privkey.pem;
|
|
|
|
client_body_timeout 120s;
|
|
client_body_buffer_size 128k;
|
|
|
|
root /var/www/lyngvo;
|
|
index index.html;
|
|
|
|
location / {
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0";
|
|
add_header Pragma "no-cache";
|
|
expires -1;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Groq API proxy (multipart POST)
|
|
location /openai/ {
|
|
proxy_pass http://127.0.0.1:8765/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 120s;
|
|
proxy_send_timeout 120s;
|
|
proxy_request_buffering off;
|
|
}
|
|
|
|
# Groq Whisper WebSocket (DPI-proof — base64 чанки)
|
|
location /ws {
|
|
proxy_pass http://127.0.0.1:8766;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_read_timeout 120s;
|
|
proxy_send_timeout 120s;
|
|
}
|
|
|
|
# Будущий бэкенд (Python/Go)
|
|
location /api/ {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 120s;
|
|
}
|
|
}
|