Dear all,
I have set up a apache with vhost_alias and suexec enabled.
I have the following,
VirtualDocumentRoot /home/%1/public_html
VirtualScriptAlias /home/%1/cgi-bin/
How to make the .cgi run by the users?
As of the case in VirtualHost, we can give User/Group directive,
<VirtualHost 192.168.0.1>
ServerName abc.domain.com
DocumentRoot "/home/abc/public_html"
User abc
Group xyz
</VirtualHost>
But how to do the similar things in Dynamic Virtual Hosting with the
mod_vhost_alias?
Thanks in advance.
But