linux  webserver  apache

  Inhaltsverzeichnis:

apache reverse proxy

2024-08-13 / 2024-08-21

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

sudo a2enmod proxy proxy_http
sudo service apache2 restart
 
<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