mirror of
https://github.com/b3nw/nginx-proxy-manager-mcp.git
synced 2026-05-23 00:45:47 -05:00
Reads nginx access/error logs directly from a mounted NPM log directory, enabling agents to debug proxy issues without SSH access. Requires mounting NPM's /data/logs volume and setting NPM_LOG_DIR. Also includes a feature request PRD for proposing a native log API upstream.
20 lines
726 B
Plaintext
20 lines
726 B
Plaintext
# NPM MCP Configuration
|
|
NPM_API_URL=http://localhost:81/api
|
|
NPM_IDENTITY=admin@example.com
|
|
NPM_SECRET=changeme
|
|
|
|
# Server Configuration
|
|
NPM_MCP_HOST=0.0.0.0
|
|
NPM_MCP_PORT=8000
|
|
NPM_MCP_TRANSPORT=stdio # stdio or http
|
|
|
|
# Log Access (optional)
|
|
# Mount NPM's /data/logs directory and set this to the mount path.
|
|
# Enables the get_proxy_host_logs tool for reading nginx access/error logs.
|
|
# NPM_LOG_DIR=/data/npm-logs
|
|
|
|
# Proxy Host Creation Defaults (JSON)
|
|
# Set default values for create_proxy_host tool parameters
|
|
# Example with wildcard cert: NPM_PROXY_DEFAULTS='{"certificate_id": 24, "ssl_forced": true}'
|
|
# NPM_PROXY_DEFAULTS='{"certificate_id": 0, "ssl_forced": true, "block_exploits": true, "allow_websocket_upgrade": true}'
|