Did you enable (LoadModule) the ssl module ?
How did you get your certificate and key? Is your public key protected by a password ? If not, you don't need to include the SSLPassPhraseDialog directive. ________________________________ From: kohanm [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2008 4:35 PM To: [email protected] Subject: [EMAIL PROTECTED] Configuration Errors on SSL+Apache 2.2 +mod_jk +Tomcat 5.5 Hi, I'am having probem to configure the SSL with the Apache 2.2 +mod_jk +Tomcat 5.5. Without SSL implementation the Tomcat 5.5 +Apache2.2 + mod_k works fine. For implementing the SSL first I take it out the # from Include ssl: Include conf/extra/httpd-ssl.conf and also in the httpd-ssl.conf file I modified these lines: ServerName mydomain:443 SSLCertificateFile "/usr/local/apache2/conf/server.crt" SSLCertificateKeyFile "/usr/local/apache2/conf/sever.key" When I run apachectl after running tomcat, I get these ERRORs: [Fri Jul 18 13:22:20 2008] [warn] Useless use of AllowOverride in line 114. Syntax error on line 57 of /usr/local/apache2/conf/extra/httpd-ssl.conf: Invalid command 'SSLPassPhraseDialog', perhaps misspelled or defined by a module not included in the server configuration Here the httdf.conf file(short describtion): Listen mydomainIP:80 LoadModule jk_module modules/mod_jk-apache-2.2.4.so <IfModule mod_jk.c> JkWorkersFile conf/workers.properties JkLogFile logs/mod_jk.log JkLogLevel error JkLogStampFormat "[%a %b %d %H:%M:%S %Y] " JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories JkRequestLogFormat "%w %V %T" Alias /list "/usr/local/jakarta-tomcat/webapps/list/" <Directory "/usr/local/jakarta-tomcat/webapps/list/"> Options Indexes +FollowSymLinks AllowOverride None Allow from all </Directory> Alias /example "/usr/local/jakarta-tomcat/webapps/example/" <Directory "/usr/local/jakarta-tomcat/webapps/example/"> Options Indexes +FollowSymLinks AllowOverride None Allow from all </Directory> <Location "/*/WEB-INF/*"> AllowOverride None deny from all </Location> JkMount /list/* example JkMount /example/* example </IfModule> # Secure (SSL/TLS) connections Include conf/extra/httpd-ssl.conf <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin </IfModule> ____________________ in the httpd-ssl.conf file the only lines that I changed from default are : ServerName mydomain:443 SSLCertificateFile "/usr/local/apache2/conf/server.crt" SSLCertificateKeyFile "/usr/local/apache2/conf/sever.key" Thanks for your help, MK
