Loading...

Category: Real Time Concepts

Goaccess

Introduction GoAccess was designed to be a fast, terminal-based log analyzer. Its core idea is to quickly analyze and view web server statistics in real time without needing to use [ … ]

Apache 2.4 with PHP-FPM

Introduction Advantages of PHP-FPM Memory-efficiency. With mod_php, the full PHP interpreter lives within each Apache child process. Even if an Apache child process only handles requests for static resources (such [ … ]

Apache 2.2 + PHP-FPM

Installing the FPM You’ll need to be running PHP 5.3 or above. The IUS repository offers these packages for RHEL and CentOS. PHP 5.3 and 5.4 have reached end of [ … ]

PHP-FPM Troubleshooting

PHP-FPM Process Managers Introduction When looking into issues or configuration of php-fpm, its best to first understand the 3 process managers the php-fpm can use. A lot of the time [ … ]

SSL template for Nginx

 Basic Virtual Host Configuration server { listen 80; server_name example.com www.example.com; root /var/www/vhosts/example.com; access_log /var/log/nginx/example.com-access.log main; error_log /var/log/nginx/example.com-error.log warn; index index.php index.html index.htm; } Notes To make a VirtualHost the [ … ]