Add recipe Gemini proxy service

This commit is contained in:
“Naeel”
2026-08-29 02:17:25 +03:00
parent df5afcec8f
commit 17def7789b
7 changed files with 149 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
location /recipe/ {
proxy_pass http://127.0.0.1:8770/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 10m;
proxy_connect_timeout 10s;
proxy_send_timeout 200s;
proxy_read_timeout 200s;
}