You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2025. It is now read-only.
This is a feature request, not a bug report.
Optimizing images is great. It should be made so it works together with moving
images to a host that doesn't send cookies to further optimize image handling
(this is an existing test in the pagespeed plugin and a good best practise).
To do this it would require to small features:
a.) Have a configurable image output directory in the filesystem.
b.) Configure a host name / URL as image prefix.
Example
GET http://test.com/index.html
<html>
<body>
<img src="bigpic.jpg">
</body>
</html>
Setting Image Directory: /var/pagespeed/images/
Setting Image Host: http://statictest.com/
HTML Rewritten to:
<html>
<body>
<img src="http://statictest.com/NUMERICURL.jpg">
</body>
</html>
This would obviously require statictest.com to have a host entry on the same
box as test.com is hosted.
Original issue reported on code.google.com by fxres...@gmail.com on 9 Nov 2010 at 10:54