本人作为开发者,想着单纯的给 docker desktop 配置一个 http 代理,不想开全局魔法上网,所以有没有那种可以在服务器上搭建代理的软件?用来给 docker 提供镜像 push 和 pull 。
1
ShineyWang 254 天前 via Android
http_proxy 软件很成熟
clash 也有各种客户端 docker 也很成熟 随便搜搜都有很多方案 |
2
silentiris 254 天前
以前有一个很好用的 clash 服务器的客户端,现在也删库跑路了
|
3
tool2d 254 天前
wireproxy 可以,虽然停止维护了,正常使用 http 代理没啥问题,协议也是最新的 wireguard ,绝对安全。
https://github.com/mysteriumnetwork/wireproxy |
4
hxy100 253 天前
如果是海外服务器,最好还是考虑 trojan 或者 v2ray 之类服务端客户端相结合的方案吧,纯纯搭一个 HTTP/HTTPS 代理,小心被国家防火墙把你的端口或者 IP 直接干掉,那就得不偿失了
|
5
datocp 253 天前
给 windows update 配置了一个 http 代理,需要借助 socks5
3proxy.cfg 配合 stunnel ,完美 auth iponly #nserver 8.8.8.8 nscache 65536 maxconn 1000 fakeresolve allow * authcache ip 3600 parent 1000 socks5+ 127.0.0.1 1085 log logformat "L[%d-%m-%Y %H:%M:%S.%.]- %N %p %C:%c %R:%r %Q:%q %e %I:%O %T %E" rotate 31 proxy -s0 -olSO_REUSEADDR,SO_REUSEPORT -ocTCP_TIMESTAMPS,TCP_NODELAY -osTCP_NODELAY -a -p8080 -i0.0.0.0 |
6
juzisang 253 天前
用 clash ,我是用的 `docker swarm` 集群,`7890` 就是代理端口,当代理服务用,clash 还支持分流啥的,很好用
`9090` 是控制端口,`https://clash.razord.top/?host=127.0.0.1&port=9090#/proxies`,可以用来看日志和控制节点分流 再分享下 clash 的配置 https://github.com/juzisang/Rules/blob/main/clash.yaml ```yaml version: "3.9" services: clash-proxy: image: metacubex/mihomo:v1.18.1 networks: - cluster environment: - TZ=Asia/Shanghai configs: - source: clash_config target: /root/.config/mihomo/config.yaml volumes: - /etc/timezone:/etc/timezone:ro - /etc/localtime:/etc/localtime:ro # - ./config.yaml:/root/.config/clash/config.yaml ports: - target: 7890 published: 7890 protocol: tcp mode: host - target: 9090 published: 9090 protocol: tcp mode: host deploy: replicas: 1 restart_policy: condition: on-failure delay: 5s max_attempts: 3 window: 120s placement: constraints: - node.labels.type==cloud configs: clash_config: file: ./config.yaml networks: cluster: external: true ``` |
7
danbai 253 天前 via Android
gost
|
8
Mystery0 253 天前 via Android
squid
|
9
sujin190 253 天前
使用量不大的化,可以
python -m sevent.helpers.simple_proxy -p 8888 或者 docker run -d -p 8888:8888 sujin190/sevent python -m sevent.helpers.simple_proxy -p 8888 |
10
vacuitym 253 天前
|
11
Jack927 253 天前
gost
|
12
Elroooo0Y 253 天前
在服务器上用魔法, 可能会被封. 我被封禁过一次.
docker pull 可以使用国内的镜像 push 的话, 可以选择香港的服务器进行构建. |
15
noclin 249 天前
|