Files
hermes-mcp/nginx.conf
garfieldheron 356b6b9f55 Initial commit: Hermes MCP - Yahoo Mail server for Claude AI
- Multi-account email support (Yahoo + self-hosted IMAP/SMTP)
- MCP tools: get_profile, search_messages, read_message, list_folders, create_draft, send_email
- Streamable HTTP transport with session recovery
- Docker + Kubernetes deployment configuration
- Express server with health endpoint

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

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-05 13:14:30 -05:00

28 lines
727 B
Nginx Configuration File

server {
listen 80;
server_name hermes.fetcherpay.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name hermes.fetcherpay.com;
ssl_certificate /etc/letsencrypt/live/hermes.fetcherpay.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/hermes.fetcherpay.com/privkey.pem;
# Required for SSE — disable buffering
proxy_buffering off;
proxy_cache off;
chunked_transfer_encoding on;
location / {
proxy_pass http://localhost:3456;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Connection '';
proxy_read_timeout 3600s;
}
}