root@serv002:~# cat /etc/apache2/sites-available/default
<VirtualHost 77.221.000.000:81>
ServerAdmin support@serv002
DocumentRoot /var/www/default/
<Directory />
Options -FollowSymLinks -Indexes -MultiViews
AllowOverride None
Order allow,deny
deny from all
</Directory>
<Directory /var/www/default>
Options +ExecCGI -Includes
FCGIWrapper /usr/lib/cgi-bin/php5
Order allow,deny
allow from all
</Directory>
<Directory /var/www/default/php-5.2>
Options +ExecCGI -Includes
FCGIWrapper /opt/php-5.2/bin/php-cgi
</Directory>
<Directory /var/www/default/php-5.3-squeeze>
Options +ExecCGI -Includes
FCGIWrapper /usr/lib/cgi-bin/php5
</Directory>
<Directory /var/www/default/php-5.3>
Options +ExecCGI -Includes
FCGIWrapper /opt/php-cgi-5.3
</Directory>
<Directory /var/www/default/php-5.4>
Options +ExecCGI -Includes
FCGIWrapper /opt/php-cgi-5.4
</Directory>
<Directory /var/www/default/php-5.5>
Options +ExecCGI -Includes
FCGIWrapper /opt/php-cgi-5.5
</Directory>
<Directory /var/www/default/php-5.6>
Options +ExecCGI -Includes
FCGIWrapper /opt/php-cgi-5.6
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel debug
AddHandler fcgid-script .php .php3 .php4 .php5 .phtml
AddDefaultCharset UTF-8
DirectoryIndex index.php
</VirtualHost>
root@serv002:~#