A simple Node.js script for generating and managing Nginx forwarding configurations dynamically.
- Automatically generates Nginx configuration files based on predefined routes.
- Supports multiple ports and route-based forwarding.
- Includes Cross-Origin Resource Sharing (CORS) headers.
- Manages existing configurations by overwriting outdated files.
- Node.js (Latest LTS recommended)
- Nginx installed and configured on your system
git clone https://github.com/BaseMax/nginx-forwarding-script.git
cd nginx-forwarding-scriptbun installModify src/configRoutes.ts to define your forwarding rules. Example:
export const config: { ports: PortConfig[] } = {
ports: [
{
port: 9004,
gateway: '127.0.0.1:2004',
routes: [
{ method: 'POST', path: '/v1/member/register', target: '127.0.0.1:30031' },
{ method: 'POST', path: '/v1/login', target: '127.0.0.1:30031' }
]
}
]
};bun run update
bun run reload
bun run restartThis will generate the Nginx configuration files in the specified path and apply the forwarding rules.
This project is licensed under the MIT License - see the LICENSE file for details.
© 2025 Max Base.