Web Server: Using FastCGIProxy to Reverse Proxy to Native PHP

From Resin 4.0 Wiki

Revision as of 00:00, 6 February 2012 by Cowan (Talk | contribs)
Jump to: navigation, search

Web-48.pngShare-48.pngCookbook-48.png

This cookbook will show you how to execute local CGI scripts through Resin using FastCGI. We'll use php-fpm as the FastCGI process manager and map *.php to Resin's included FastCGI servlet. Finally, it will provide instruction on setting up WordPress to run in Resin using FastCGI.

For standard CGI, see Application Server: Native PHP With CGIServlet.

Executing PHP with FastCGI

Setup of FastCGI is sightly more complex than basic CGI, since you need to install php-fpm. php-fpm is PHP's FastCGI process manager. It DOES NOT come with PHP by default. It must be enabled as a compile time option using the flag "--enable-fpm". See PHP-FPM Install documentation for more information. (The IUS Community Project has a php-fpm RPM available.)

# Startup php-fpm
php-fpm

php-fpm will startup by default listening on the local address on port 9000, which works fine for us.

The example below demonstrates how to configure Resin to execute PHP via FastCGI. Keep in mind that Resin comes with [Quercus], Caucho's 100% Java implementation of PHP5. You may not need native PHP if Quercus works for your application.

web-inf/resin-web.xml:

<web-app xmlns="http://caucho.com/ns/resin"
       xmlns:ee="urn:java:ee"
       xmlns:resin="urn:java:com.caucho.resin">
 
 <resin:FastCgiProxy regexp="\.php">
   <address>localhost:9000</address>
 </resin:FastCgiProxy>

</web-app>

Create a simple test php file in your webapp's root directory, as follows:

test.php

<?php phpinfo(); ?>

And then access the URL http://127.0.0.1:8080/yourwebapp/test.php and you will see something like this:

Php-info-fpm.png

Notice "Server API" shows "FPM/FastCGI".

As an interesting exercise, try commenting out <resin:FastCgiProxy> in resin-web.xml, and access the page again. It should still work, but the page now show the Quercus PHP info display instead. All *.php is mapped to QuercusServlet by default in app-default.xml. Your resin-web.xml overrides this mapping, but the webapp will fallback to QuercusServlet if not set.

Php-info-quercus.png

WordPress on Resin with FastCGI and php-fpm

These instructions were tested with Resin 4.0.25 Professional, PHP 5.3.10, and WordPress 3.3.1.

# Before starting, create an empty mysql database for your WordPress tables
# PHP requires the php-mysql extension
# WordPress requires sendmail

# Startup php-fpm
php-fpm

# Shutdown resin 
resinctl stop

# Backup the packaged ROOT webapp directory: 
cd /var/www/webapps 
mv ROOT ROOT.bak

# Download and extract Wordpress:
wget http://wordpress.org/latest.zip
unzip latest.zip

# Rename wordpress to ROOT so that it is served as the ROOT webapp (/ context)
mv wordpress ROOT

# Create resin-web.xml
cd ROOT
mkdir WEB-INF
vi WEB-INF/resin-web.xml (copy/paste from the example above)

# Configure WordPress
cp wp-config-sample.php wp-config.php
vi wp-config.php (modify DB_NAME, DB_USER, DB_PASSWORD, DB_HOST)

# Startup Resin
resinctl start


Access the URL http://127.0.0.1:8080/wp-admin/install.php :

Wordpress-install.png

Personal tools
TOOLBOX
LANGUAGES