IBM HTTP Server Access

recker5

Member
We are using a JDE web server (windows 2000, websphere 4.0, IBM HTTP
Server). When we go to URL (http://webserver/jde), it lists all directories
and files in the webclient.war folder. How can we control users from not
seeing these and this access not impacting their JAS html logon? Any
suggestions will help. Thanks!

_________________________________________________________________
http://join.msn.com/?page=dept/dialup
 
Have you checked your httpd.conf file?

JDE Web Client documentation suggests adding the following lines:
Alias /jde "d:/Program Files/JDEdwards/JAS/EA_JDEdwards_1.ear/webclient.war"
<Directory "d:/Program Files/JDEdwards/JAS/EA_JDEdwards_1.ear/webclient.war/WEB-INF">
Order Deny,Allow
Deny from All
</Directory>

NOTE: This is from a W2K install of IBM HTTP 2.0. The dirve letter will differ depending on your install location.

Hope this helps if you haven't already figured it out...

Michaelm007
 
<Directory "e:/Program Files/JDEdwards/JAS/EA_JDEdwards_1.ear/webclient.war">
Options None
</Directory>
 
Back
Top