Files
flux-restore-docs/nginx.conf
kang 6ed16be0a6 初始化 FLUX 图像修复双雄源码解析站点
- LucidFlux (ICLR'26) 深度解析
- FLUX-IR (TPAMI'25) 深度解析
- 带文件+行号证据
- 两个深挖:Modulation 实现 + Reinforce ODE 采样

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 12:01:12 +08:00

20 lines
441 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/javascript application/json text/html;
gzip_min_length 1000;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 7d;
add_header Cache-Control "public, no-transform";
}
}