Package Information
Released: 5/11/2025
Downloads: 57 weekly / 785 monthly
Latest Version: 0.1.4
Author: funtw
Available Nodes
Documentation
HTTPS Over Proxy Node for n8n
This node allows you to make HTTPS requests through an HTTP proxy in n8n workflows.
Features
- Make HTTPS requests through HTTP proxies
- Support for proxy authentication
- Configurable timeout settings
- Option to ignore SSL certificate validation issues
- Support for various request methods (GET, POST, PUT, DELETE, etc.)
- Support for query parameters, headers, and body data
- Batch processing capabilities
- Pagination support
- Internal network access control for security
Installation
Local Installation
- Go to your n8n installation directory
- Install the node package:
npm install n8n-nodes-httpsoverproxy
Global Installation
If you installed n8n globally, you can install this node globally too:
npm install -g n8n-nodes-httpsoverproxy
Usage
After installation, you can find the "HTTPS Over Proxy" node in the n8n nodes panel under the "Network" category.
Basic Configuration
- Add the HTTPS Over Proxy node to your workflow
- Set the request method (GET, POST, etc.)
- Enter the target URL
- Configure proxy settings in the Options section:
- Enable "Use Proxy"
- Enter Proxy Host (without http:// or https:// prefix)
- Enter Proxy Port
- Configure proxy authentication if needed
Advanced Options
- Timeout: Increase this value if your proxy or target website is slow
- Allow Unauthorized Certificates: Enable to ignore SSL certificate validation issues
- Batching: Configure batch size and interval for processing multiple requests
- Allow Internal Network Access: Enable to allow requests to internal network addresses (disabled by default for security)
- Full Response: Return complete response data including headers and status code
- Response Format: Choose between autodetect, JSON, text, or file
Security Features
- Protection against SSRF attacks
- Restricted internal network access (localhost, 127.0.0.1, etc.) by default
- Secure proxy authentication handling
Troubleshooting
Common Issues
- Connection Refused: Verify that the proxy server is running and the port is correct
- Timeout Errors: Increase the timeout value in the options
- SSL Certificate Errors: Enable "Allow Unauthorized Certificates" if you trust the target site
- Proxy Format Errors: Make sure not to include http:// or https:// in the proxy host field