Thanks for the replies!!
I found a real expert in linux and he helpt me through this.
We installed apache2 php & mysql
changed apache2.conf like :
add following lines :
ServerName zimbra.example.be
ServerAdmin
root@zimbra.example.be
RewriteEngine On
ProxyPassReverse /
http://192.168.9.99/
ProxyPass /
http://192.168.9.99/
<Location />
order allow,deny
allow from all
AuthName "only for registered users"
AuthType Basic
AuthUserFile "/etc/httpd/passwd.httpd"
<Limit GET>
require valid-user
</Limit>
</Location>
we made a passwd.http file with username and password in
htpasswd -c /etc/httpd/passwd.httpd username
restarted apache 2 servers
and it worked!! Now a little fine tuning and it is up and running.
thanks to the expert, he really teached me well!