- Add deploy-to-vm.sh script for easy VM deployment - Add systemd service file template - Add Nginx configuration with SSL and rate limiting - Add DEPLOYMENT_QUICKSTART.md for n8ndocumentation.aiservices.pl - Update REMOTE_DEPLOYMENT.md to reference quickstart The deployment process is now streamlined: 1. Copy .env.example to .env 2. Configure for production (domain, auth token) 3. Run ./scripts/deploy-to-vm.sh Tested locally with production configuration - all endpoints working correctly with authentication. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
29 lines
615 B
Desktop File
29 lines
615 B
Desktop File
[Unit]
|
|
Description=n8n Documentation MCP Server
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=nodejs
|
|
WorkingDirectory=/opt/n8n-mcp
|
|
ExecStart=/usr/bin/node /opt/n8n-mcp/dist/index-http.js
|
|
Restart=always
|
|
RestartSec=10
|
|
|
|
# Environment
|
|
Environment="NODE_ENV=production"
|
|
EnvironmentFile=/opt/n8n-mcp/.env
|
|
|
|
# Security
|
|
NoNewPrivileges=true
|
|
PrivateTmp=true
|
|
ProtectSystem=strict
|
|
ProtectHome=true
|
|
ReadWritePaths=/opt/n8n-mcp/data /opt/n8n-mcp/logs /opt/n8n-mcp/temp
|
|
|
|
# Logging
|
|
StandardOutput=append:/opt/n8n-mcp/logs/service.log
|
|
StandardError=append:/opt/n8n-mcp/logs/service-error.log
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |