Install Apache and php5
aptitude install apache2 php5
Prepare the config file
Create directory (in /var/www/ zum beispiel) with config file.
Example config file - important lines:
Load PHP module for Apache:
LoadModule php5_module modules/libphp5.so
Set Apache to handle *.php files with PHP handler:
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
Run the server
apache2 -D NO_DETACH -f /var/www/adminer/conf/adminer.conf
Or add it to the /etc/apache2/sites-available and enable it with a2ensite site.mysite.com