arch-design-agent-skill-das.../frontend/nginx.conf
openclaw f12c45f692 build: add Docker deployment — Compose, Dockerfiles, Nginx config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 17:25:02 +00:00

16 lines
300 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://backend:8900;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location / {
try_files $uri $uri/ /index.html;
}
}