Analysis of configuration file of Kodex Explorer open source private cloud program
config/setting_user.php append content (all of the following, be careful not to use Chinese quotation marks, double quotation marks and semicolons)
//[specify multiple languages and keep Chinese only]
$GLOBALS['config']['settings']['language'] = 'zh-CN';
//[automatically create a new directory when creating a user-defined group]
$GLOBALS['conf ...
Posted by paulareno on Wed, 04 Dec 2019 20:42:40 -0800
k8s using Kube router to build highly available and extensible ingress
brief introduction
Use Kube router to realize the function of inress of k8s cluster, which is highly available and easy to expand
Environmental description
This experiment is based on the k8s cluster which has been installed and configured. For k8s installation, please refer to other blog articles. lab4, as a router, forwards lab5's request
Exp ...
Posted by eirikol on Tue, 03 Dec 2019 05:27:35 -0800
LNMP + haproxy + preserved load balancing - basic service preparation
Log service
Modify the log service configuration and restart the log service;
vim /etc/rsyslog.conf
Edit the system log configuration to specify the included profile path and rules:
$IncludeConfig /etc/rsyslog.d/*.conf
Create a separate configuration file for haproxy;
vim /etc/rsyslog.d/haproxy.conf
Edit the configuration file as follows: ...
Posted by nadz on Sun, 01 Dec 2019 13:03:36 -0800
Election mechanism for Pulsar Functions Worker
abstract
In Pulsar, Function, Source, and Link are all running on Function Worker, and you can refer to Function for reference An article about Pulsar Functions , you can refer to the use of Source and Link
Introduction to Pular Source
Pular Sink Getting Started Guide.
This paper introduces the election mechanism of Functions Worker.Read th ...
Posted by theironchef on Fri, 29 Nov 2019 20:39:52 -0800
Nginx chapter reverse agent
About the configuration file and explanation of the reverse seven layer agent
Nginx official website: https://www.nginx.com/
Centos yum install nginx
yum install nginx -y
so, let's ask you a question, what? Why do we use Nginx to implement the seven layer agent? What is the seven layer agent?
1. Difference between nginx proxy and not
Tradition ...
Posted by br549 on Mon, 25 Nov 2019 01:25:49 -0800
How to deploy the front-end dist directory?
The front-end deployment is actually a part of front-end engineering. This blog is my attempt to summarize the front-end deployment based on my practical work experience and amateur exploration. On the one hand, I have some records, on the other hand, I can give you some inspiration.
Deploy to qiniu cloud
Deploy to Alibaba cloud OSS and Tence ...
Posted by CBR on Fri, 22 Nov 2019 02:13:52 -0800
Nginx Learning Reorganization
Installation and Configuration of Nginx
0 Installation
Slightly, download it on the official website.Note that Nginx is written in C and is not cross-platform. Different operating systems need to download different Nginx.
Nginx Basic Commands under 1 Windows
start-up
start nginx
Close
./nginx -s quit
./nginx -s stop
see information
./nginx -V ...
Posted by Naez on Tue, 19 Nov 2019 19:33:30 -0800
Count PV, UV and IP of website through nginx
Recently, there is a need for the project to count PV, UV and IP of the website and display them to the background. So we can use the log of nginx.
concept
UV: independent visitors; based on cookie s, if a computer is equipped with three different browsers, opening the same page respectively, three UVs will be generated.PV: the number of visits ...
Posted by w.geoghegan on Sat, 09 Nov 2019 08:53:52 -0800
Centos6 Tengine enables Http2 transmission protocol
1. Preface
Recently, we are optimizing the visiting speed of the website and opening http2 protocol for the website. What are the advantages of this protocol? As follows:
http2 is the next generation transport protocol, which will be widely used in the future, which is a trend.
http2 has the feature of multiplexing, which means to access resou ...
Posted by webbrowser on Sat, 09 Nov 2019 06:31:11 -0800
Compose Arrangement nginx+php
What should I do when the previous manual operation of running nginx+php in multiple containers was cumbersome?Docker Compose follows
Delete the containers and networks you created in the previous section first. If you do not, there will be conflicts when you complete this chapter
docker stop nginx
docker stop fpm
docker network rm lnmp
Take ...
Posted by Najjar on Thu, 07 Nov 2019 11:21:04 -0800