Applies To:

[ Zend Core V2.x ]
[ IBM System i ]

Overview

This is the main Apache Server Configuration file,  It contains the configuration directives that give the server its instructions (powered by Apache)..

The PASE apache server for IBM System  i includes a rich collection of enhancements and features for a secure connection and a rich set of security features and services that pertain to the goals of authentication, authorization, integrity, confidentiality, and auditing.


PASE based Apache server is supported via the IBM Web Administration for i5/OS.  It allows users to list, start, stop PASE based Apache server instances and edit their configuration files via IBM Web Administration for i5/OS.

Instructions

Protecting PASE apache content with basic authentication

There are two configuration steps which you must complete in order to protect a resource using basic apache PASE authentication, grouping alike users depending on what you are trying to do.

  1. Create a password file  From an i5/OS command line:
  2. Set the PASE apache configuration to use this password file:


<Directory "/www/zendcore/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order deny,allow
#- Deny from all
#- Allow from 127.0.0.1
Allow from all
#-----add the information created in step one -----------
AuthType basic
AuthName "Signon welcome message"
AuthUserFile /mydirectory/mypasswordfile
Require valid-user
#-----added -----------
</Directory> 


3.Optionally, create a Group File From an i5 command line:

The following configuration setup works for PASE apache direct requests.(reverse proxy not used)

Result

You have information on your web site that is sensitive or intended for only a small group of people, the techniques in this article will help you make sure that only users with proper credentials will have access to the information.


Excerpt: Apache - PASE Authentication, Authorization and Access Control

Original Post Date: 2009-10-23 14:09:15

External Links:  http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp

                              http://www-03.ibm.com/servers/enable/site/porting/iseries/pase/misc.html

Alternative Description:

Apache - PASE Authentication, Authorization and Access Control