...
Aaron Rosenzweig has a very thorough article about using mod_rewrite with Apache.
mod_rewrite with mod_webobjects
...
Add to the end of your make.config the following:
CC = gcc
Webobjects Adaptor for Apache 2.4
Access control
Check out http://httpd.apache.org/docs/2.4/upgrading.html#access
In 2.2, access control based on client hostname, IP address, and other characteristics of client requests was done using the directives Order
, Allow
, Deny
, and Satisfy
.
In 2.4, such access control is done in the same way as other authorization checks, using the new module mod_authz_host
. The old access control idioms should be replaced by the new authentication mechanisms, although for compatibility with old configurations, the new module mod_access_compat
is provided.
2.2 configuration:
Code Block |
---|
<Location /cgi-bin/WebObjects/>
Order allow,deny
Allow from all
</Location> |
2.4 configuration:
Code Block |
---|
<Location /cgi-bin/WebObjects/>
Require all granted
</Location> |