使用Squid作为Maven存储库
有人知道如何使用Squid代理Maven存储库吗? 有哪些配置文件? 主要问题在于,maven客户端发出的HTTP请求带有控制缓存行为的标头(我想绕过该标头)。 这是一个典型的请求: GET /maven/proxy/jboss-public/org/richfaces/richfaces-bom/4.2.0.Final/richfaces-bom-4.2.0.Final.pom HTTP/1.1 Cache-control: no-cache Cache-store: no-store Pragma: no-cache Expires: 0 Accept-Encoding: gzip User-Agent: Apache-Maven/3.0.4 (Java 1.6.0_26; Linux 2.6.32-38-generic) Host: 192.168.2.171 Connection: Keep-Alive 我已经disk_cache proxy_http为此使用了Apache HTTPD(和启用的模块),但是我正在创建一个镜像,而不是一个代理。 这是配置(基于该站点): <Proxy *> Order deny,allow Allow from all </Proxy> # central ProxyPass /maven/proxy/central http://repo1.maven.org/maven2 ProxyPassReverse /maven/proxy/central http://repo1.maven.org/maven2 CacheEnable disk /maven/proxy/central …