INSTALLING
About this task
By default all listen ports are disabled in the domino.conf file. You must enable any listen ports you want the server to use.
Procedure
1. To allow the IBM HTTP Server to accept HTTP connections, enable normal HTTP port 80, and remove the comment character (#) for the following line(s) in the domino.conf file:
#Listen 0.0.0.0:80
# Uncomment the following line for IPv6 support on Windows XP or Windows
# 2003 or later. Windows IPv6 networking must be configured first.
# Listen [::]:80
This example section shows port 80 enabled for IPv4.
# IPv4 support:
Listen 0.0.0.0:80
# appropriate directives
#Listen 0.0.0.0:443
## IPv6 support:
#Listen [::]:443
#<VirtualHost *:443>
#SSLEnable
#SSLClientAuth optional
#SSLProtocolDisable SSLv2
#SSLProtocolDisable SSLv3
#</VirtualHost>
#KeyFile domino_program_directory/ihs/ihsserverkey.kdb
#SSLDisable
This example section shows port 443 enabled for IPv4 with an SSL keyring file located on d:/keys/myserver.kdb.
Listen 0.0.0.0:443
<VirtualHost *:443>
SSLEnable
SSLClientAuth optional
</VirtualHost>
KeyFile d:/keys/myserver.kdb
SSLDisable
#
4. After the key database is created, verify that the KeyFile statement points to the fully qualified file name of the key database, as in the preceding example.