<div dir="ltr">Hi,<div>We have a MapProxy WMS setup using our own ZXY map tiles as the tile source with the following YAML source snippet:</div><div><br></div><div><div>sources:</div><div>  custom_source:</div><div>    type: tile</div><div>    grid: GLOBAL_WEBMERCATOR</div><div>    url: <a href="http://our.tile.server/client_a/%(z)s/%(x)s/%(y)s.png">http://our.tile.server/client_a/%(z)s/%(x)s/%(y)s.png</a></div></div><div><br></div><div>This works fine for a map service we have set up "client_a" but I would like it to be dynamic and specific for each client we have such that each client cannot see another client's WMS service.</div><div><br></div><div>I imagine the current getCapabilities URL, "<a href="http://my.server/">http://my.server/</a><span style="font-family:calibri,sans-serif;font-size:11pt">webmap/service?REQUEST=GetCapabilities</span>" could have the additional client ID, i.e. "<a href="http://my.server/">http://my.server/</a><span style="font-family:calibri,sans-serif;font-size:11pt">webmap/service?REQUEST=GetCapabilities&CLIENTID=client_a</span>" which is then passed onto the YAML such as the following:</div><div><br></div><div><div><div>sources:</div><div>  custom_source:</div><div>    type: tile</div><div>    grid: GLOBAL_WEBMERCATOR</div><div>    url: <a href="http://our.tile.server/%(clientid)s/%(z)s/%(x)s/%(y)s.png">http://our.tile.server/%(clientid)s/%(z)s/%(x)s/%(y)s.png</a></div></div></div><div><br></div><div>Is it possible?</div><div><br></div><div>Jason</div></div>