This is a discussion on You configured HTTP(80) on the standard HTTPS(443) port within the Apache Web Server forums, part of the Web Server and Related Forums category; Hello, I am trying to run the Apache 2.0.54 web server with the mod_nss module, which came out ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello,
I am trying to run the Apache 2.0.54 web server with the mod_nss module, which came out one or two months ago, instead of mod_ssl. However, when I start Apache, I get this error in the error log file and the web server doesn't start at all. This error occurs only when I run "apachectl startssl", the web server starts just fine if I don't use SSL and run "apachectl start". Below are excerpt of my configuration files. Can anybody help me with where I am doing wrong? Best regards, Peter httpd.cong: ======== .... Listen 192.168.1.101:80 .... LoadModule nss_module modules/libmodnss.so .... <IfModule mod_nss.c> Include conf/nss.conf </IfModule> .... <VirtualHost 192.168.1.101:80> ServerAdmin you@example.com DocumentRoot "/usr/local/apache2/htdocs" ServerName 192.168.1.101:80 ErrorLog /usr/local/apache2/logs/error_log </VirtualHost> nss.conf: ======= .... <IfDefine SSL> .... Listen 192.168.1.101:443 .... <VirtualHost _default_:443> # General setup for the virtual host DocumentRoot "/usr/local/apache2/htdocs" ServerName 192.168.1.101:443 ServerAdmin you@example.com ErrorLog /usr/local/apache2/logs/error_log TransferLog /usr/local/apache2/logs/access_log # SSL Engine Switch: # Enable/Disable SSL for this virtual host. NSSEngine on .... </VirtualHost> </IfDefine> |
| Thread Tools | |
| Display Modes | |
|
|