Open
Description
Hello,
In config/geocoder.php, how can I set the proxy?
I tried that :
return [
// Providers get called in the chain order given here.
// The first one to return a result will be used.
'providers' => [
'Geocoder\Provider\GoogleMapsProvider' => ['fr-FR', 'Île-de-France', true],
'Geocoder\Provider\FreeGeoIpProvider' => null,
],
'adapter' => new Geocoder\HttpAdapter\CurlHttpAdapter(['http_proxy' => 'myproxy.domain.name']),
];
But it doesn't work :-/