Por alguns motivos, preciso acessar o link com http em vez de https. Eu criei um proxy reverso no meu Apache:
<VirtualHost 127.0.0.1:80>
ServerName api.postcodeapi.nu.local
SSLProxyEngine on
ProxyPass / https://api.postcodeapi.nu/
ProxyPassReverse / https://api.postcodeapi.nu/
</VirtualHost>
Adicionado linha a seguir em / etc / hosts
127.0.0.1 api.postcodeapi.nu.local
e acessando com curl, mas obtendo um gateway inválido:
# curl http://api.postcodeapi.nu.local
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>502 Bad Gateway</title>
</head><body>
<h1>Bad Gateway</h1>
<p>The proxy server received an invalid
response from an upstream server.<br />
</p>
</body></html>
Alguém por favor pode me ajudar?
Tags reverse-proxy linux apache-2.2