Free Tarot Readings

WAMP settings for PERL


These are my WAMP (Windows Apache Mysql PHP) settings for perl so it works with .cgi and .pl extensions. I hope this is of some use to someone.

<VirtualHost *:80>
ServerName home
DocumentRoot "c:/home"
Alias "/cgi" "c:/home/cgi"
<Directory  "c:/home/">
 Options +Indexes +Includes +FollowSymLinks +MultiViews
 AllowOverride All
 Require local
</Directory>
<Directory "c:/home/cgi/">
  AddHandler cgi-script .cgi .pl
  AllowOverride All
 Options +Indexes +Includes +FollowSymLinks +MultiViews +ExecCGI
 Require all granted
</Directory>
</VirtualHost>