02 architecture 03.3 detailed configuration of nginx
Static page access speed of Nginx and Tomcat
nginx Is all web The fastest service to process static resources
Configure Nginx page
#Configure nginx
[root@web01 ~]# vim /etc/nginx/conf.d/ab.linux.com.conf
server {
listen 80;
server_name ab.linux.com;
location / {
root /code/ab;
try_files $uri $uri/ @tomcat;
...
Added by Texan on Wed, 01 Dec 2021 05:20:27 +0200
Dockerfile writing guide
introduction
The remote warehouse can pull a tomcat image, and then docker run starts the container, and then docker exec -it container id /bin/bash enters the container and returns our program to webapps. Wait, this series of operations need to be operated manually step by step. Then I ask you: you don't have the deployment permission of ...
Added by clartsonly on Tue, 30 Nov 2021 12:48:59 +0200
2021-11-29 the 38th step towards procedural ape
catalogue
1, linux overview
2, Installing VMware
3, Installing LINUX
4, linux common commands
4.1 description of command format
4.2 three common commands
4.3 help command
4.4 document processing instructions
4.5 document viewing instructions
4.6 document search instruction
4.7 file (DE) compression instruction
4.8 time instruction ...
Added by programming.name on Mon, 29 Nov 2021 15:20:28 +0200
C++ Commodity Management System
1. Brief introduction of the system
Using C++ language, this paper designs and implements an inbound and outbound commodity management system suitable for supermarkets, which implements functions such as commodity purchase, sales, commodity classification, revenue management, order management, administrator and so on.
2. Systematic Hierarch ...
Added by Hiro on Thu, 18 Nov 2021 19:53:44 +0200
Zabbix 5.4 compilation and installation
Linux version: Centos 8.4
Zabbix version: 5.4.7
Mysql version: 8.0.26
Apache version: 2.4.37
PHP version: 7.2.24 (minimum requirement: 7.2)
catalogue
Environmental preparation
1, Software dependent package installation
1. LAMP installation
2. Installation of other software packages
Service installation
1, Zabbix Server installation ...
Added by torleone on Wed, 10 Nov 2021 04:08:51 +0200
Docker learning notes
Docker overview
Similar to container isolation,
jar -- container (mysql,redis) -- publish to warehouse -- download from warehouse
Docker history
dotcloud was founded in 2010
2013 Docker open source
Docker1.0 was released on April 9, 2014
Virtual machines were used before
Development based on go language
Docker installation
#Uninstall ...
Added by donbueck on Tue, 09 Nov 2021 21:12:48 +0200
Deployment of Django and Vue projects on CentOS 7
Server environment: centos7 + nginx + uwsgi + Python 3 + Django Database: MySQL 8.0 Project framework: Django 3.7 + Vue + ElementUI Note: This is a link to someone else's blog. The original link is https://blog.csdn.net/qq_32244493/article/details/109179782. I made some modifications according to my project and recorded my deployment process.
...
Added by naomi385 on Tue, 09 Nov 2021 08:08:09 +0200
LNMP architecture installation
1. Starting from version 1.20 of nginx, the official library is the same as the large version of epel, and the small version number of epel is updated. If you want to install the official, it is recommended to download the corresponding software package directly from the official
yum install -y http://nginx.org/packages/centos/7/x86_64/RPMS/ng ...
Added by yacahuma on Tue, 02 Nov 2021 16:42:27 +0200
rsync synchronization service
1. Introduction to Rsync
rsync is a data image backup tool under linux system. Using the fast incremental backup tool Remote Sync, you can synchronize remotely, support local replication, or synchronize with other SSH and rsync hosts.
2. rsync features
rsync supports many features:
1. The entire directory tree and file system can be mir ...
Added by outpost on Tue, 12 Oct 2021 10:03:57 +0300
rsync remote synchronization
1, rsync overview
1. The concept of rsync
rsync (Remote Sync) is an open source fast incremental backup tool, which can mirror and synchronize the entire directory tree between different hosts, support incremental backup, maintain links and permissions, and adopt optimized synchronization algorithm to perform compression before transmission. ...
Added by davanderbilt on Sat, 02 Oct 2021 21:03:22 +0300