On Mon, Jun 17, 2013 at 10:48 AM, Brandon Invergo <[email protected]>wrote:
> > However, when I attempt to sync my Fossil repositories, I receive the > following error: > > $ fossil sync https://user:[email protected]/reponame > via proxy: http://proxy.company.com:8080 > fossil: server says: 503 Service Unavailable: 0 > I don't know that much about proxies, since I never personally need to deal with them. But maybe they should be disabled for HTTPS? What happens if you recompile with this patch: Index: src/url.c ================================================================== --- src/url.c +++ src/url.c @@ -326,11 +326,11 @@ if( zProxy==0 || zProxy[0]==0 || is_truth(zProxy) ){ zProxy = fossil_getenv("http_proxy"); } } if( zProxy && zProxy[0] && !is_false(zProxy) - && !g.urlIsSsh && !g.urlIsFile ){ + && !g.urlIsSsh && !g.urlIsFile && !g.urlIsHttps ){ char *zOriginalUrl = g.urlCanonical; char *zOriginalHost = g.urlHostname; char *zOriginalUser = g.urlUser; char *zOriginalPasswd = g.urlPasswd; unsigned uOriginalFlags = g.urlFlags; -- D. Richard Hipp [email protected]
_______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

