HTTL 403 / You don't have permission to access / on this server.
Problem solved I did not have the correct access permissions on the
directory
/usr/local/www/apache22/data
where the web site was stored.
Note permission 776 on data gave 403 error
server2# ls -l
total 10
drwxr-xr-x 2 root wheel 512 Mar 14 20:03 cgi-bin
drwxrwxrw- 22 root staff 1024 Mar 20 20:43 data
drwxr-xr-x 3 root wheel 1024 Mar 14 20:03 error
drwxr-xr-x 3 root wheel 3584 Mar 14 20:03 icons
permission 775 on data fixed the error
server2# chmod 775 data
server2# ls -l ..
total 10
drwxr-xr-x 2 root wheel 512 Mar 14 20:03 cgi-bin
drwxrwxr-x 22 root staff 1024 Mar 20 20:43 data
drwxr-xr-x 3 root wheel 1024 Mar 14 20:03 error
drwxr-xr-x 3 root wheel 3584 Mar 14 20:03 icons