generic-chatbot-admin / devops /nginx.default.conf
muryshev's picture
а
e2036e6
raw
history blame contribute delete
921 Bytes
server {
listen 7860;
# Указываем корневую директорию для фронтенда
root /home/pn/app;
index index.html;
server_name _;
location / {
try_files $uri /index.html;
}
# Проксируем API-запросы на бекенд
location /api/ {
proxy_pass https://muryshev-generic-chatbot-backend.hf.space;
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;
}
# Указываем пути к временным директориям Nginx
client_body_temp_path /tmp/nginx/client_temp;
proxy_temp_path /tmp/nginx/proxy_temp;
fastcgi_temp_path /tmp/nginx/fastcgi_temp;
uwsgi_temp_path /tmp/nginx/uwsgi_temp;
scgi_temp_path /tmp/nginx/scgi_temp;
}