ich habe hier einige Probleme mit dem Apache.
Also, ich habe folgendes Szenario:
Ich habe auf meinem Server ein tomcat laufen der horcht auf Port 8080 und 8443 (für https). Jetzt will ich meinen Apache so konfigurieren, dass dieser alle Requests die auf http://www.meinedomain.de nach http://www.meinedomain.de:8080 weiterleitet.
Ausserdem stellt dieser Tomcat die Verbindung nach dem Request auf https um, welchen ich dann auf port 8443 umleiten will..
Leider bricht er bei mir immer wenn er auf https umschaltet mit der Fehlermeldung "Connection refused on localhost" ab.
(Localhost da apache lokal an tomcat weiterleitet)
Hat vielleicht irgendwer eine Idee?
Hier ist meine Virtual Host config:
Code: Alles auswählen
<VirtualHost *:80>
ServerName meinedomain.de
RewriteEngine On
ProxyRequests Off
RewriteRule ^/ecommerce(.*)$ http://localhost:8080/$1 [P,L]
RewriteRule ^/images(.*)$ http://localhost:8080/images/$1 [P,L]
RewriteRule ^/(.*)$ http://localhost:8080/$1 [P,L]
ProxyPassReverse / http://localhost:8080/
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog /var/log/apache2/sei_error.log
CustomLog /var/log/apache2/sei_access.log combined
ServerSignature On
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerName meinedomain.de
RewriteEngine On
SSLProxyEngine On
SSLProxyCACertificatePath "/opt/ofbiz3_sei/ofbiz/base/config/zertifikat/"
ProxyRequests Off
RewriteRule ^/ecommerce(.*)$ http://localhost:8080/$1 [P,L]
RewriteRule ^/images(.*)$ http://localhost:8080/images/$1 [P,L]
RewriteRule ^/(.*)$ http://localhost:8080/$1 [P,L]
ProxyPassReverse / http://localhost:8080/
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog /var/log/apache2/sei_error.log
CustomLog /var/log/apache2/sei_access.log combined
ServerSignature On
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>