How to set the server to make the ScriptAlias directory to :/home/user/public_html/cgi-bin each time i add a domain ?
for example from my domain the site can`t execute files in: http://domain.com/cgi-bin/file.pl
it sais that there is no such file there
you can check at:
#
ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
#
# "/usr/local/apache/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/usr/local/apache/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
</IfModule>
# End of aliases.
i read it..didn`t understood to much...
i`l need so that ScriptAlias is set to something like /home/*/public_html/cgi-bin/ each time i add a domain from WHM...