[Apache][Nginx] build web applications that are only publicly used within the team

prefaceThe laboratory has recently assigned a task to set up an information sharing system on the laboratory server to facilitate the information introduction of senior students after graduation, but the following requirements are met:Use as convenient as possibleAs the system is oriented to the research room, privacy needs to be guaranteedFor ...

Posted by Bounty on Sat, 06 Nov 2021 05:01:46 +0100

Detailed explanation of nginx - working principle and configuration file

How nginx works Nginx consists of kernel and modules. Among them, the design of the kernel is very small and concise, and the work completed is also very simple. Only by looking up the configuration file, the client request is mapped to a location block (location is an instruction in nginx configuration for URI matching), and each instruction ...

Posted by jakebrewer1 on Tue, 26 Oct 2021 03:28:41 +0200

Enterprise operation and maintenance practice --k8s learning notes progress encryption, authentication and address rewriting

1. Introduction to ingress service A global load balancing Service set to proxy different backend services is the Ingress Service in Kubernetes. Ingress consists of two parts: Ingress controller and ingress service. The Ingress Controller will provide corresponding proxy capabilities according to the Ingress object you define. Various revers ...

Posted by m!tCh on Sat, 23 Oct 2021 04:14:31 +0200

Nginx + Tomcat load balancing cluster

introduction Generally, a Tomcat site can not be used in the production environment alone because it may have a single point of failure and can not cope with the complex and diverse requests of too many customers. Therefore, a more reliable solution is needed to improve the Web site architecture. 1, Case overview Nginx is a very exc ...

Posted by veveu on Fri, 15 Oct 2021 19:30:31 +0200

Obtain the real IP address of the client after envoy proxy

When envoy is used as the front-end agent, the acquisition of user IP is very important. Generally, the way to obtain IP is different. They are obtained through the X-Forward-For, X-Real-IP or Remote addr attributes in the Header, but what if you ensure that the IP that envoy can obtain is the real user IP? Continue to decrypt this article! Co ...

Posted by ravegti on Thu, 14 Oct 2021 06:42:31 +0200

Nginx optimization and anti-theft chain

catalogue introduction 1, Nginx optimization 1. Hide version number 2. Modify users and groups 3. Set cache time 4. Log separation 5. Connection timeout 6. Change the number of processes 7. Web page compression 2, Theft chain and anti-theft chain 1. Chain theft 2. Anti theft chain 3. fpm parameter optimization summary ​​​​​​​ i ...

Posted by Wabin on Tue, 12 Oct 2021 01:32:18 +0200

Nginx compilation and installation

catalogue preface 1, Compiling and installing Nginx services       1. Close the firewall and upload the software package required to install ngnix to the / opt directory       2. Install dependent packages       3. Compile and install Nginx       4. Check, start, restart and ...

Posted by TheIceman5 on Sun, 10 Oct 2021 12:33:46 +0200

[Java from 0 to architect] Nginx - basic and common configurations (reverse proxy, load balancing, dynamic and static separation)

Java from 0 to architect Directory: [Java from 0 to architect] learning record Nginx Foundation Nginx official website: http://nginx.org/ Network requests are divided into dynamic requests and static requests: Dynamic request: it requires background program processing logic, such as querying database dataStatic request: request som ...

Posted by manoj_jnics1 on Thu, 07 Oct 2021 23:32:04 +0200

Build nginx service under Linux CentOS 7 build nginx reverse proxy build nginx load balancing build nginx high availability

Building nginx service under Linux 1.nginx introduction: Nginx is an open-source, high-performance and highly reliable Web and reverse proxy server, and supports hot deployment. It can run almost 7 * 24 hours without interruption. Even if it runs for several months, it does not need to be restarted. It can also hot update the software version ...

Posted by laeelin on Sun, 03 Oct 2021 21:28:54 +0200

docker installs wordpress, binds domain names through nginx reverse proxy, and configures https

Assuming that docker has been installed, if it is not installed, you can follow it 5-minute installation docker tutorial . 1, Download Image The latest version is downloaded by default. If you want to specify the corresponding version, you can add the version after the colon. For example, mysql:5.7: docker pull mysql:5.7 docker pull wordpre ...

Posted by xgd on Sun, 03 Oct 2021 01:15:11 +0200