# zhao-webproxy **Repository Path**: jiangweiff/zhao-webproxy ## Basic Information - **Project Name**: zhao-webproxy - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-26 - **Last Updated**: 2026-05-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # zhao-webproxy A simple backend reverse proxy with HTTP Basic Auth. ## Target All requests are proxied to: - https://dingzhi.didavvis.cn ## Auth Proxy login (what your users enter in browser): - Username: `test` - Password: `123456` Upstream target auth (automatically added by proxy): - Username: `mario` - Password: `carbone11` ## Run 1. Install dependencies: ```bash npm install ``` 2. Start server: ```bash npm start ``` 3. Open: - http://localhost:3000 Your browser will prompt for HTTP Basic Auth credentials. ## Optional Set custom port: ```bash PORT=8080 npm start ``` ## Docker Start with one command: ```bash ./scripts/docker-up.sh ``` Stop container: ```bash ./scripts/docker-down.sh ``` View logs: ```bash ./scripts/docker-logs.sh ``` The service is exposed on: - http://localhost:3000 If you prefer manual commands: ```bash docker compose up -d --build docker compose down ```