- Add X-Forwarded-For support for real client IP detection (BunnyCDN) - Change MCP domain from mcp.inouter.com to haproxy.inouter.com - Remove unused wildcard domains (bench, mcp, ssh) - Add nocodb.inouter.com wildcard mapping - Ignore runtime files (*.db, cdn-ips.lst) in .gitignore Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
403 B
Plaintext
43 lines
403 B
Plaintext
# Separate projects
|
|
api/
|
|
|
|
# Certificates and secrets
|
|
certs/
|
|
conf/mcp-token.env
|
|
mcp/.env
|
|
*.env
|
|
|
|
# Server configuration (contains IPs)
|
|
conf/servers.json
|
|
conf/domains.map
|
|
|
|
# Runtime data
|
|
run/
|
|
data/
|
|
*.state
|
|
*.lock
|
|
*.db
|
|
*.db-wal
|
|
*.db-shm
|
|
conf/cdn-ips.lst
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Claude Code
|
|
.claude/
|
|
|
|
# Docker
|
|
.dockerignore
|