linux  webserver  apache

apache reverse proxy

Notiz für einen reverse Proxy, also eine weiterleitung ...

sudo a2enmod proxy proxy_http
sudo service apache2 restart

 sudo nano /etc/apache2/sites-available/000-default-ssl.conf
<VirtualHost *:443>

	# ...

	# zusätzlich zur Config hinzufügen!
	SSLProxyEngine On
	SSLProxyVerify none
	SSLProxyCheckPeerCN off
	SSLProxyCheckPeerName off
	SSLProxyCheckPeerExpire off
	ProxyPass / https://127.0.0.1:8443/
	ProxyPassReverse / https://127.0.0.1:8443/

</VirtualHost>

sudo a2ensite 000-default-ssl.conf 
 
sudo systemctl reload apache2