# myproxy **Repository Path**: impl/myproxy ## Basic Information - **Project Name**: myproxy - **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-02-13 - **Last Updated**: 2026-02-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 启动介绍 ``` # 1. 默认配置运行(缓存目录: ./proxy_cache) ./proxy_server # 2. 指定缓存目录为 /data/proxy_cache ./proxy_server -cache-dir /data/proxy_cache # 3. 简写形式指定缓存目录 ./proxy_server -d /tmp/cache # 4. 同时指定监听地址和缓存目录 ./proxy_server -l 0.0.0.0:8888 -d /mnt/cache # 5. 查看帮助信息 ./proxy_server -h ``` # 客户端请求示例 ``` # 第一次下载(从外网获取并缓存) curl -x http://192.168.56.103:8080 -O https://github.com/labring/sealos/releases/download/v5.1.1/sealos_5.1.1_linux_amd64.tar.gz # 第二次下载(直接读取本地缓存) curl -x http://192.168.56.103:8080 https://dl.k8s.io/v1.33.6/bin/linux/amd64 ```