Install php7.4, mysql5.7, mongodb and nginx environment under mac
First of all, a digression, the black apple of NUC is really fragrant!
The company installed a black apple for the NUC. After using it for a period of time, I felt that the landline at home was tasteless and decided to start a NUC. The integration software MxSrvs used in the company's development environment is also very easy to use. But I ...
Posted by khalidorama on Mon, 13 Sep 2021 21:44:49 -0700
Dockerfile Mirror Making
Dockerfile operation instructions
instructionsMeaningFROM MirrorSpecifies the mirror on which the new image is based. The first instruction must be the FROM instruction, which is required for each image createdMAINTAINER NameMaintainer information describing the mirrorRUN commandExecute commands on the mirror on which they are based and su ...
Posted by bullchina on Sat, 11 Sep 2021 10:35:34 -0700
Detailed Nginx common optimization items and optimization parameter settings
Optimize Ngxin for increased security and high concurrency
By optimizing Nginx settings, Nginx enhances security while supporting more concurrent requestsTune Nginx's host Linux kernel parameters to make them more compliant with Web servers that support high concurrent access
Nginx configuration optimization
Edit nginx.conf configuration fil ...
Posted by roots on Thu, 09 Sep 2021 09:35:28 -0700
2021-09-08-Nginx Note 2: Nginx's access.log log log
Uses of access.log logs
Statistical access to ip sources and access frequency over a period of timeView most frequently visited pages, HTTP response status codes, interface performanceInterface seconds, minutes, hours and days
Default Configuration Resolution
nginx default log configuration
#log_format main '$remote_addr - $remote_use ...
Posted by lbaxterl on Tue, 07 Sep 2021 10:39:49 -0700
Django deployed online Ubuntu + nginx + uwsgi + django3.1 + Python 3.8
Django project deployment Online
preface
Because many pits were taken during the deployment of Django project, write down the pits encountered in the deployment process for reference only.
Environment and third party Library
The deployment environment and third-party libraries used in this article are as follows: (different environments and ...
Posted by garek007 on Fri, 03 Sep 2021 17:48:05 -0700
Detailed installation directory for Nginx
1.Nginx Log Rotation, Log Cutting for logrotate Service | Profile
/etc/logrotate.d/nginx
2.Nginx Home Profile|Directory, Profile
/etc/nginx
/etc/nginx/nginx.conf
/etc/nginx/conf.d
/etc/nginx/conf.d/default.conf
3.cgi configuration related, fastcgi | configuration file
/etc/nginx/fastcgi_params
/etc/nginx/scgi ...
Posted by Pieman86 on Sun, 19 Jul 2020 08:07:05 -0700
Separation of dynamic and static state by Nginx+Tomcat
Add group groupadd www
Add user WWW: useradd - G www under www group
Modify configuration file nginx.conf :
user www www;
worker_processes 2;
events{
worker_connections 1024;
}
http{
#Set the default type to binary stream
default_type application/octet-stream;
server_names_hash_bucket_size 128;
#Specify the hea ...
Posted by ftrudeau on Wed, 01 Jul 2020 08:01:07 -0700
centos7 uses docker to build the running environment and deploy jar
*First, there is a clean CentOS 7 environment
1. To install docker, you need to use Yum to pull it, so get the yum source first.
yum install -y yum-utils device-mapper-persistent-data lvm2
Add docker warehouse location for yum source
yum-config-manager --add-repo https://download.docker.com/linux/cento ...
Posted by czambran on Tue, 30 Jun 2020 00:28:51 -0700
Linux Installation Configuration nginx (successful)
Linux Installation and configuration of nginx
1, What is nginx
2, nginx installation
2.1 download from official website
2.2 download using wget command
2.3 unzip the installation package
2.4 configuration of nginx
2.4.1 use default configuration (recommended)
2.4.2 custom configuration (not recomme ...
Posted by ginginca on Mon, 29 Jun 2020 18:53:50 -0700
Centos7 deploys squid proxy and cache server
brief introduction
Squid is a high performance proxy cache server that supports FTP, gopher, HTTPS, and HTTP protocols.Unlike general proxy caching software, Squid handles all client requests in a separate, non-modular, I/O-driven processAgent modeForward proxy allows users to use squid proxy server to access the internet. It also enables simi ...
Posted by son.of.the.morning on Mon, 29 Jun 2020 12:31:27 -0700