11-16-05 11:10 PM
I have installed Verisign Digital Certificate on IBM HTTP Server.
I am able to access http://mydomain.com and http://mydomian.com/application
But I am not able to access through SSL https://mydoain.com and https://mydomain.c
om/application name.
I have already created 443 port virtual host on http server.
But still not able to access website with application using SSL.
For reference my httpd.conf file :-
LoadModule was_ap20_module /QSYS.LIB/QWAS6.LIB/QSVTAP20.SRVPGM
# Configuration originally created by Create HTTP Server.
Listen *:80
Listen *:443
DocumentRoot /www/webserver/htdocs
Options -ExecCGI -FollowSymLinks -SymLinksIfOwnerMatch -Includes -IncludesNo
Exec -Indexes -MultiViews
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agen
t}i\"" combined
LogFormat "%{Cookie}n \"%r\" %t" cookie
LogFormat "%{User-agent}i" agent
LogFormat "%{Referer}i -> %U" referer
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog logs/access_log combined
LogMaint logs/access_log 7 0
ServerName www.mydomain.com
AccessFileName .htaccess
SetEnvIf "User-Agent" "Mozilla/2" nokeepalive
SetEnvIf "User-Agent" "JDK/1\.0" force-response-1.0
SetEnvIf "User-Agent" "Java/1\.0" force-response-1.0
SetEnvIf "User-Agent" "RealPlayer 4\.0" force-response-1.0
SetEnvIf "User-Agent" "MSIE 4\.0b2;" nokeepalive
SetEnvIf "User-Agent" "MSIE 4\.0b2;" force-response-1.0
SSLAppName QIBM_HTTP_SERVER_WEBSERVER
SSLCacheEnable
SSLEngine On
SSLClientAuth Optional
SetEnv HTTPS_PORT 443
DirectoryIndex index.html
<Directory />
Order Deny,Allow
Deny From all
</Directory>
<Directory /www/webserver/htdocs>
Order Allow,Deny
Allow From all
</Directory>
<VirtualHost *:80>
ServerName www.sasinbp.com
DocumentRoot /www/webserver/htdocs
</VirtualHost>
<VirtualHost *:443>
ServerName www.sasinbp.com
DocumentRoot /www/webserver/htdocs
</VirtualHost>
Can anyone please guide about how to configure http and websphere access https://wwww.mydomai
n.com and https://ww.mydomain.com/application name.
Is any other settings required to access website using SSL on HTTP Server an
d WebSphere Side?
[ Post a follow-up to this message ]
|