OSX - Il proxy di installazione di High Sierra fallisce

0

Cercando di configurare un servizio proxy sul mio computer di sviluppo che punta a example.com/php per lo sviluppo di un'app ibrida basata su ionic per evitare problemi CORS.

Che cosa ho fatto:

sudo vi /etc/apache/httpd.conf

abilita

LoadModule proxy_module libexec/apache2/mod_proxy.so
LoadModule proxy_module libexec/apache2/mod_proxy.so

aggiungi

Include /private/etc/apache2/vhosts/*.conf


sudo vi /private/etc/apache2/vhosts/proxy.conf

<VirtualHost localhost:9999>
    ProxyPass   /php/   https://example.com/php
</VirtualHost>

Il mio proxy non funziona:

~ $ nc -v localhost 9999
nc: connectx to localhost port 9999 (tcp) failed: Connection refused
nc: connectx to localhost port 9999 (tcp) failed: Connection refused
nc: connectx to localhost port 9999 (tcp) failed: Connection refused

mentre la porta 80 funziona:

~ $ nc -v localhost 80
found 0 associations
found 1 connections:
     1: flags=82<CONNECTED,PREFERRED>
    outif lo0
    src ::1 port 50299
    dst ::1 port 80
    rank info not available
    TCP aux info available

Connection to localhost port 80 [tcp/http] succeeded!

HTTP/1.1 400 Bad Request
Date: Wed, 25 Jul 2018 05:58:53 GMT
Server: Apache/2.4.33 (Unix)
Content-Length: 226
Connection: close
Content-Type: text/html; charset=iso-8859-1

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>400 Bad Request</title>
</head><body>
<h1>Bad Request</h1>
<p>Your browser sent a request that this server could not understand.<br />
</p>
</body></html>

Il firewall è disabilitato, quindi nessuna idea di dove fallisce. I log di Apache non riportano nulla relativo al proxy.

    
posta El Dude 25.07.2018 - 16:26
fonte

0 risposte

Leggi altre domande sui tag