I went ahead and installed:
apache2
php5-fpm
php5-suhosin
php5-gd
php5-mysql
mysql-server (going to be replacing with mariadb-server soon)
I then set up apache and added the following to the bottom of my apache2.conf:
FastCgiExternalServer /srv/www/php5.external -host 127.0.0.1:9000
AddHandler php5-fcgi .php
Action php5-fcgi /usr/lib/cgi-bin/php5.external
Alias /usr/lib/cgi-bin/ /srv/www/
which I got from a guide at :
http://alexcabal.com/installing-apache- ... -maverick/
Currently, my server is running Drupal 7 just fine, and reporting the FPM module of php, with my web files located in /srv/www/sitename/public_html
Does the above configuration seem correct? And, I was wondering if folks had any good references for tuning php5-fpm with apache2 and Drupal.