Embedding PHP 7 Directly into Nginx with ngx_php7
ngx_php7 is a high-performance, non-blocking Nginx module that embeds PHP 7 directly into the web server process—similar in architecture and intent to ngx_lua. It enables inline PHP execution at various Nginx request-processing phases without relying on external processes like PHP-FPM, mod_php, or CGI gateways.
Developed as a open-source extens ...
Posted on Mon, 29 Jun 2026 16:08:22 +0000 by nazariah
Configuring NGINX Ingress for HTTPS and WebSockets in Kubernetes
Securing Internal Pods with HTTPS via Ingress
When the internal pods communicate over HTTPS, the Ingress must be configured accordingly to ensure proper handling of encrypted traffic. Below is an example configuration that sets up an NGINX Ingress to forward traffic to HTTPS backend services.
apiVersion: networking.k8s.io/v1
kind: Ingress
meta ...
Posted on Sat, 27 Jun 2026 17:59:50 +0000 by knelson
Linux Infrastructure Architecture Overview for Small-Medium Websites
Components of a Small-Medium Scale Website Architecture
Customers/Users
Visitors accessing the website
Security Guard - Firewall (firewalld)
Implements access control policies
Receptionist - Load Balancer (nginx)
Schedules and distributes incoming user requests
Waiter - Web Server (nginx)
Processes user requests
Chef - Database Server ...
Posted on Wed, 24 Jun 2026 16:36:56 +0000 by nmohamm
Essential Nginx Configuration Parameters Explained
The worker_processes directive determines the number of worker processes Nginx should spawn. A typical Nginx instance runs one master process that manages multiple worker processes based on this setting. The default value is 'auto', which automatically creates a number of worker processes equal to the available CPU cores. When using SSL certifi ...
Posted on Tue, 23 Jun 2026 17:54:17 +0000 by Gish
Nginx Installation and Reverse Proxy Configuration
Nginx Overview
Nginx is a high-performance HTTP server and reverse proxy known for low memory usage and strong concurrency support. It serves static content efficiently and handles dynamic content via CGI protocols like Perl and PHP, but requires Tomcat for Java applications. Optimized for high-load environments, Nginx supports up to 50,000 con ...
Posted on Mon, 22 Jun 2026 17:47:34 +0000 by dscapuano
Securing Nginx with Let's Encrypt SSL on CentOS 7
Let's Encrypt is a free, automated, and open Certificate Authority (CA) provided by the Internet Security Reseacrh Group (ISRG). It allows website owners to obtain trusted SSL certificates that are recognized by all major modern browsers. This guide demonstrates how to use the Certbot tool to generate and manage SSL certificates for Nginx on a ...
Posted on Mon, 22 Jun 2026 16:23:32 +0000 by pixelsoul
Core Concepts in HTTP, Tomcat, Nginx, and Decoupled Web Architecture
JavaWeb Fundamentals
JavaWeb encompasses the technology stack used to build web-based applications using the Java programming language. The standard architecture for these applications is the Browser/Server (B/S) model. In this paradigm, the client requires only a web browser, while all application logic and data storage are maintained on the ...
Posted on Sun, 21 Jun 2026 17:04:11 +0000 by homerjay
Comparing INFINI Gateway and Nginx as Proxies for Elasticsearch Clusters
INFINI Gateway OverviewINFINI Gateway is a specialized application gateway engineered specifically for Elasticsearch deployments, focusing on enhancing cluster performance, security, and operational manageability. Acting as a front-end proxy, it intercepts all client requests before forwarding them to backend Elasticsearch clusters, offering ad ...
Posted on Sun, 14 Jun 2026 16:55:32 +0000 by buildernaut1
Production-Ready Deployment of a Django-Vue Full-Stack Application on CentOS
Server Hardening and Initial Setup
Before deploying any application, secure the underlying infrastructure. Configure cloud provider security groups to restrict inbound traffic strictly to required ports: SSH (22), HTTP (80), and HTTPS (443). Avoid exposing all ports via 0.0.0.0/0 in production—tighten rules to specific IPs or ranges where possi ...
Posted on Sun, 14 Jun 2026 16:32:49 +0000 by gethinw
Setting Up Free HTTPS Certificates with Let's Encrypt
Let's Encrypt provides a free, automated, and open certificate authority service operated by the Internet Security Research Group (ISRG), a California-based nonprofit organization. The project is backed by major companies including Mozilla, Cisco, Akamai, Electronic Frontier Foundation, and Google Chrome, and has grown rapidly since its launch. ...
Posted on Fri, 12 Jun 2026 17:23:51 +0000 by christine75