django-orchestra/scripts/services/apache_full_stack.md

2.3 KiB

Apache 2 MPM Event with PHP-FPM, FCGID and SUEXEC on Debian Jessie

The goal of this setup is having a high-performance state-of-the-art deployment of Apache and PHP while being compatible with legacy applications.

  • Apache Event MPM engine handles requests asynchronously, instead of using a dedicated thread or process per request.

  • PHP-FPM is a FastCGI process manager included in modern versions of PHP. Compared to FCGID it provides better process management features and enables the OPCache to be shared between workers.

  • FCGID and SuEXEC are used for legacy apps that need older versions of PHP (i.e. PHP 5.2 or PHP 4)

Sources:

Related:

  1. Install the machinery

    apt-get update
    apt-get install apache2-mpm-event php5-fpm libapache2-mod-fcgid apache2-suexec-custom php5-cgi
    
  2. Enable some convinient Apache modules

    a2enmod suexec
    a2enmod ssl
    a2enmod auth_pam
    a2enmod proxy_fcgi
    a2emmod userdir
    
  3. Configure suexec-custom

    sed -i "s#/var/www#/home#" /etc/apache2/suexec/www-data
    sed -i "s#public_html#webapps#" /etc/apache2/suexec/www-data
    
  4. Create logs directory for virtualhosts

    mkdir -p /var/log/apache2/virtual/
    chown -R www-data:www-data /var/log/apache2
    
  5. Restart Apache

    service apache2 restart
    

TODO CHRoot https://andrewbevitt.com/tutorials/apache-varnish-chrooted-php-fpm-wordpress-virtual-host/

```bash
echo '
[vhost]
istemplate = 1
listen.mode = 0660
pm.max_children = 5
pm.start_servers = 1
pm.min_spare_servers = 1
pm.max_spare_servers = 2
' > /etc/php5/fpm/conf.d/vhost-template.conf
```

```bash
mkdir -p /var/run/fpm/socks/
chmod 771 /var/run/fpm/socks
chown orchestra.orchestra /var/run/fpm/socks
```