Makresh Nayakmkn.hashnode.dev·Nov 22, 2023Running multiple PHP versions in CentOS 7 without cPanel (port binding method)FPM (FastCGI Process Manager) is a primary PHP FastCGI implementation containing some features (mostly) useful for heavy-loaded sites. Update your centos 7 server: sudo yum update Install Apache webserver: sudo yum install httpd Install REMI reposi...65 readsphp-fpm
Melvin C Varghese (melvincv)melvincv.hashnode.dev·Sep 2, 2023FastCGI Micro Cache in NGINXIntroduction FastCGI Micro Cache is a caching mechanism that caches dynamic content in front of a web server with NGINX. It is the most efficient way to implement a dynamic cache mechanism. In this article, we will discuss how to configure FastCGI Mi...Optimize and Secure NGINXnginx
Melvin C Varghese (melvincv)melvincv.hashnode.dev·Jul 20, 2023Server-side processing using php-fpmPHP is a popular scripting language that is often used to create dynamic web pages. However, PHP can be resource-intensive, especially on high-traffic websites. This is where NGINX and php-fpm come in. NGINX is a high-performance web server that can ...Configuring NGINXPHP