This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Description
It appears that resources proxied with ModPagespeedMapProxyDomain aren't
combined with local resources. Take a look at the following config / HTML:
ModPagespeedMapProxyDomain http://foo.com/bar-static http://bar.com/static
<head>
<link rel="stylesheet" href="//foo.com/1.css" />
<link rel="stylesheet" href="//foo.com/2.css" />
<link rel="stylesheet" href="//bar.com/static/a.css" />
<link rel="stylesheet" href="//foo.com/3.css" />
<link rel="stylesheet" href="//foo.com/4.css" />
</head>
In that case, 1.css and 2.css will be processed and combined, static/a.css will
be proxied and processed, and 3.css and 4.css will be processed and combined.
That leaves 3 resources for browsers to fetch. Ideally the proxied resource
wouldn't interrupt the combiner and thus there'd only be one resource to
download.
Using v1.2.24.1 w/ Apache 2.2 w/ prefork.
Original issue reported on code.google.com by amat...@gmail.com on 3 Jan 2013 at 7:22