Apache Webproxy: Unterschied zwischen den Versionen

Aus xinux.net
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Install and activate= *apt-get install libapache2-mod-proxy-html *a2enmod proxy proxy_http *service apache2 reload =Links= *http://krausix.de/apache-reverse-…“)
 
Zeile 3: Zeile 3:
 
*a2enmod proxy proxy_http
 
*a2enmod proxy proxy_http
 
*service apache2 reload
 
*service apache2 reload
 +
=Examble=
 +
<pre>
 +
Listen 1234
 +
<VirtualHost *:1234>
 +
        ServerName mein.server.tld
 +
        ServerAlias www.mein.server.tld
 +
 +
        ProxyPass / http://meine-anwendung/
 +
        ProxyPassReverse / http://meine-anwendung/
 +
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
 +
        CustomLog /var/log/apache2/reverse-proxy_test_1234.log common
 +
</VirtualHost>
 +
</pre>
  
 
=Links=
 
=Links=
 
*http://krausix.de/apache-reverse-proxy-mod_proxy/
 
*http://krausix.de/apache-reverse-proxy-mod_proxy/

Version vom 18. Februar 2017, 15:49 Uhr

Install and activate

  • apt-get install libapache2-mod-proxy-html
  • a2enmod proxy proxy_http
  • service apache2 reload

Examble

Listen 1234
<VirtualHost *:1234>
        ServerName mein.server.tld
        ServerAlias www.mein.server.tld
 
        ProxyPass / http://meine-anwendung/
        ProxyPassReverse / http://meine-anwendung/
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        CustomLog /var/log/apache2/reverse-proxy_test_1234.log common
</VirtualHost>

Links