Files
Memoh/docker/nginx.conf
T
Acbox Liu 23d49a1c7b feat: message abort and web socket support (#222)
* feat: message abort and web socket support

* fix(web): chat end

* fix: lint

* fix: lint
2026-03-09 23:27:50 +08:00

67 lines
1.8 KiB
Nginx Configuration File

server {
listen 8082;
listen [::]:8082;
server_name _;
root /usr/share/nginx/html;
index index.html;
client_max_body_size 50m;
# Gzip 压缩
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_types text/plain text/css text/xml text/javascript application/x-javascript application/xml+rss application/json application/javascript;
# 前端路由
location / {
try_files $uri $uri/ /index.html;
}
# Nginx 健康检查
location = /health {
access_log off;
add_header Content-Type text/plain;
return 200 "ok\n";
}
# 统一代理参数
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
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;
proxy_connect_timeout 60s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
# Swagger 文档(保留 /api 前缀)
location ~ ^/api/(docs(?:/.*)?|swagger\.json)$ {
proxy_pass http://memoh-server:8080;
}
# API 代理(其余 /api/* 去掉 /api 前缀转发)
location /api/ {
proxy_pass http://memoh-server:8080/;
}
# Agent Gateway 代理
location /agent/ {
proxy_pass http://memoh-agent:8081/;
}
# 静态资源缓存
location ~* \.(jpg|jpeg|png|gif|ico|css|js|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# 安全头
add_header X-Frame-Options "SAMEORIGIN" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-XSS-Protection "1; mode=block" always;
}