Hi

> (1) how I make a certificate accepted by apache

Hm, I don't know, maybe someone else can answer this.
Try a selfsigned at first.

> (2) how I make mod_proxy redirect requests from port 443 to my tomcat on
port 8443 and request from port 80 to tomcat on port 8080

<VirtualHost ........:443>
    SSLEngine on
    SSLCertificateFile ........
    SSLCertificateKeyFile ........
    ServerName ........
    ProxyRequests Off
    ProxyPass / https://127.0.0.1:8443
    ProxyPassReverse / https://127.0.0.1:8443
</VirtualHost>

<VirtualHost ........:80>
    ServerName ........
    ProxyRequests Off
    ProxyPass / http://127.0.0.1:8080
    ProxyPassReverse / http://127.0.0.1:8080
</VirtualHost>


Regards,
  Steffen

Attachment: smime.p7s
Description: S/MIME cryptographic signature

Reply via email to