Docker (17): using docker to build nginx+phpfpm environment 2

The original link of this paper is: http://blog.csdn.net/freewebsys/article/details/77082783 No reprinting without the permission of the blogger. The blogger's address is: http://blog.csdn.net/freewebsys 1. About php Since php has no nginx+php solution, you need to build your own nginx+php environment. The official PHP image is php-fpm, ...

Added by xAtlas on Wed, 05 Jun 2019 20:50:23 +0300

Introduction to nginx and detailed configuration

Introduction to Nginx Nginx is an open source high performance HTTP server and reverse proxy server that supports both IMAP/POP3/SMTP proxy services. It has the following characteristics: - It is efficient to process static files, index files, and automatic indexing. - Fast and efficient reverse proxy to improve site performance. - ...

Added by smc on Wed, 29 May 2019 11:20:03 +0300

Using Nginx to Build Fast and Secure HTTPS Website Based on Let's Engypt Free Certificate

My big EOIOfficial website Officially launched! In order to build the company's first officially launched public site, we have spent a lot of thought, one of which is how to make it fast and safe. We use Nuxt SSR was done and enabled PWA module Lighthouse scored more than 90 points. On the basis of guaranteeing IE9 compatibility, the official w ...

Added by moola on Tue, 28 May 2019 01:29:24 +0300

nginx installation in RHEL 6.5 environment

1. Understanding Nginx Nginx ("engine x") is a high performance HTTP and reverse proxy server, as well as an IMAP/POP3/SMTP proxy server. Nginx was developed by Igor Sysoev for Rambler.ru, the second most visited site in Russia. The first public version, 0.1.0, was released on October 4, 2004. It distributes the source code in BSD-l ...

Added by THEMADGEEK on Sat, 25 May 2019 22:07:31 +0300

Nginx feature validation - reverse proxy / load balancing / page caching / URL redirection

The original article was published in cu: 2016-08-25 Reference documents: Nginx reverse proxy, load balancing, page caching, URL rewriting, etc. http://freeloda.blog.51cto.com/2033581/1288553 Nginx reverse proxy/load balancing simple configuration: http://www.cnblogs.com/jacktang/p/3669115.html Nginx reverse proxy, back-end web how to get re ...

Added by franklyn on Fri, 24 May 2019 01:57:43 +0300

Installation and Configuration of Nginx under CentOS

Step 1: Make sure that gcc-c++, pcre, zlib, openssl are installed on your system If not, you can use the following commands to reload all of them yum install gcc-c++ yum install pcre pcre-devel yum install zlib zlib-devel yum install openssl openssl--devel Step 2: Check if nginx is installed find -name nginx If the system alre ...

Added by djfox on Mon, 20 May 2019 03:44:10 +0300

Building FastDFS File System on CentOS Single Machine

This example is to build a FastDFS file management system on CentOS 7.2 stand-alone computer. FastDFS Architecture Diagram Software name Edition Baidu Yunpan Storage Name FastDFS 5.11 fastdfs-5.11.zip FastDFS-Nginx-module nothing fastdfs-nginx-module-master.zip LibFastCommon 1.0.36 libfastcommon-1.0.36.zip nginx 1.10.3 nginx-1. ...

Added by Tanus on Sun, 19 May 2019 06:41:55 +0300

Using docker-compose to build ELK5.0

1. Building the Environment 172.19.2.51: elasticsearch+kibana+logstash+kopf 172.19.2.50: elasticsearch+nginx+filebeat 172.19.2.49: elasticsearch The access log of nginx is the content we want to collect, which is transmitted by filebeat, so neither nginx nor filebeat runs in docker. All other components run in docker, version 5 II. 172.19.2.51 ...

Added by eddiegster on Sun, 19 May 2019 06:10:20 +0300

Server Deployment NODE Project

1. premise 1.1 The NODE environment has been built on the server, if not, you can refer to me. The previous blog Build. Because this blog is in The previous blog If there is any obscurity, you can read the previous blog first. 1.2 A NODE project has been written. 2. deployment 2.1 Because I use PM2 for process management, I first write the PM2 ...

Added by dannyone on Thu, 16 May 2019 23:27:20 +0300

Python 3 Flask+nginx+Gunicorn deployment (below)

If you haven't seen the last article, please click here first. Python 3 Flask+nginx+Gunicorn Deployment (Part I) Continue with the previous article, in which we have run and installed gunicorn and nginx. In this article, we need to bind the nginx and gunicorn ports. In the last article, we've run gunicorn Guicorn-w 4-b 1 ...

Added by Sulphy on Thu, 16 May 2019 13:43:29 +0300