nginx-infra/default.conf
happybell80 2d90d40b3a Simplify to minimal nginx proxy setup
- Use standard nginx:alpine image instead of custom build
- Simple default.conf for 80 → 5137 proxy
- Remove unnecessary nginx/ directory and complex configurations
- Clean, minimal setup for basic reverse proxy

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-07 23:54:00 +09:00

10 lines
266 B
Plaintext

server {
listen 80;
location / {
proxy_pass http://127.0.0.1:5137;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}