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 has been archived by the owner on Apr 21, 2023. It is now read-only.
This will help sites that want to send all beacons for a page to the same
physical server as the one that will handle the HTML.
Note that we do send the encoded URL as a post parameter, but the
load-balancing is much easier to do if it's available as a query-param.
It would be preferable to remove the post-body param and rely solely on the
query-param for transmitting the URL. If you don't do this, then I think we'll
need a new pagespeed.conf option to additionally add the URL as a query-param.
But if that's easier for some reason then it seems acceptable.
Original issue reported on code.google.com by jmara...@google.com on 8 May 2013 at 7:41
The text was updated successfully, but these errors were encountered:
From a configurability standpoint, having the ability to set the param name
would be ideal in cases where we need to give it a unique namespace.
So two configs:
1) Enable URL Query Param
2) Set param name to X
Does the pixel file name and extension remain consistent over time?
Original comment by hayes...@gmail.com on 9 May 2013 at 6:43
We'll have a change checked in shortly to add the originating page url to the
beacon.
Regarding the second config option (setting the param name), does it need to be
the same param as the URL? We already have an option ModPagespeedBeaconUrl that
allows you to set a custom url for the beacon. You could potentially set this
to 'ModPagespeedBeaconUrl /mod_pagespeed_beacon?customparam=value'. The beacon
would then get sent to
/mod_pagespeed_beacon?customparam=value&url=http%3A%2F%2Fwww.example.com. This
doesn't 100% work yet, but if that meets your requirements it would be cleaner
for us to fix and support compared to adding a new option.
Original comment by j...@google.com on 13 May 2013 at 8:54
This is fixed in 2 commits.
r3250 moves the url query param from the post body to the query param, and
r3206 allows query params to be added to the custom beacon URL path with
ModPagespeedBeaconUrl.
Original comment by j...@google.com on 25 Jun 2013 at 2:13
Original issue reported on code.google.com by
jmara...@google.com
on 8 May 2013 at 7:41The text was updated successfully, but these errors were encountered: