files cant't be seen by LLM, but everything else works.

This commit is contained in:
emil
2026-04-26 22:52:49 +03:00
parent 55d4b7dbba
commit 2307c63bf1
16 changed files with 861 additions and 134 deletions
+43
View File
@@ -0,0 +1,43 @@
server {
listen 80;
server_name localhost;
# Gzip compression
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml;
# Frontend (static files)
location / {
proxy_pass http://frontend:80/;
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;
}
# Backend API
location /api/ {
proxy_pass http://backend:3002/;
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;
# SSE support for streaming
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 86400s;
}
# Strapi
location /strapi/ {
proxy_pass http://strapi:1337/;
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;
}
}