From Fedora Project Wiki

Revision as of 05:55, 16 August 2012 by Kaio (talk | contribs) (init)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

This is the procedures for deploying a nginx server which supports PHP, with fewest steps and shortest time on Fedora 17. For advanced configurations please check out references from the Internet.

Procedures

  1. Log in as "root" user:
    $ su -
        
  2. Install required packages and their dependencies:
    $ yum install nginx php-cli php-fpm
        
  3. Open the /etc/nginx/nginx.conf with text editor:
    $ vi /etc/nginx/nginx.conf
        
  4. Customize the web root directory by changing the upper into the lower:
            location / {
                root   html;
                index  index.html index.htm;
            }
        
            location / {
                root   /var/www/html;
                index  index.html index.htm;
            }
        
  5. Enable the PHP by uncomment the following lines:
            location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
                include        fastcgi_params;
            }
        
  6. Customize the root directory of PHP and correct the SCRIPT_FILENAME, by changing the lines in last step into:
            location ~ \.php$ {
                root           /var/www/html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;
            }
        
  7. Start/restart the nginx service:
    $ systemctl restart nginx.service
        
  8. Start the php-fpm - PHP FastCGI Process Manager:
    $ php-fpm
        
  9. Open ports on the iptables firewall:
    $ iptables -I INPUT -p tcp --dport 80 -j ACCEPT
        
  10. Create a php_info.php in the web site root directory with contents:
    <?php echo phpinfo(); ?>
        
  11. Visit the php_info.php file for confirming the results.

PHP-FPM

You can make php-fpm starts when system boot and auto-re-spawn it when it crashed. Check out spawn-fcgi for more information.