Simple and detailed harbor build

preparation in advance Offline package download: https://github.com/goharbor/h... Select 572MB tgz Hearing that 1.7.6 seems to have a bug, for insurance reasons, I choose 1.8.5 Note minimum installation requirements Installation steps Install docker, configure the source below, and install a specific version of docker (reference documentati ...

Added by rodin on Sun, 07 Jun 2020 04:23:22 +0300

Docker container and image of kubernetes

Container and image container Common container States running stopped paused created deleted Note: to view the commands used for docker status: docker ps: container for viewing running status docker ps -a: View containers in all States docker ps -qa: view all container ID S docker stop $(docker ps -qa): stop all containers docker rm $(docke ...

Added by shutat on Mon, 01 Jun 2020 11:28:09 +0300

K8S implementation of gray-scale publishing based on ingress nginx

Previously introduced Gray publishing with ambassador , how to use the implementation of ingre nginx. introduce Ingress nginx is a K8S ingress tool, which supports the configuration of Ingress Annotations to achieve gray-scale publishing and testing in different scenarios.   Nginx Annotations Four Canary rules are supported: nginx.in ...

Added by 1042 on Wed, 13 May 2020 09:58:48 +0300

Take a quick look at Nginx

1, Basic knowledge of Nginx 1. What is Nginx? Nginx is an open source, lightweight, high-performance HTTP server and reverse proxy server.It is characterized by less memory and strong concurrency. 2. What does Nginx do? It can be used as an HTTP server to access and publish websites.It can also be used as a reverse proxy server to achieve load ...

Added by marian on Thu, 07 May 2020 14:43:36 +0300

LNMP Architecture - Nginx parsing PHP related configuration, Nginx agent

Nginx parsing PHP related configuration configuration file vim /usr/local/nginx/conf/vhost/test.com.conf ......... location ~ \.php$ { include fastcgi_params; //fastcgi_pass 127.0.0.1:9000 fastcgi_pass unix:/tmp/php-fcgi.sock; //There are two listening formats of fastcgi ﹐ pass, ...

Added by phpSensei on Thu, 30 Apr 2020 15:35:29 +0300

Some problem records of laravel+nginx error 500 after configuration have been solved

1, Check the ngxin configuration. Here is my nginx configuration Here paste the source code for your reference: user www www; worker_processes 4; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user ...

Added by a6000000 on Wed, 29 Apr 2020 17:13:02 +0300

Docker consult container service update and discovery

Docker consult container service update and discoveryContainer service update and discovery topologyThe nginx proxy service is deployed on the consumer server. The Registrar detects the service in the docker container and adds the registration to the consumer. The consumer template is registered and written into the created template according ...

Added by thomashw on Fri, 24 Apr 2020 14:54:25 +0300

Docker private warehouse, volume, port mapping

Private Warehouse EstablishmentTo build a private warehouse(1) Download the registry image at the character terminal(2) The client sets the daemon.json file to specify the private warehouse location(3) Generate registry container, open 5000 ports(4) Image labeling: docker tag original image name warehouse IP: port / image name (must be labeled ...

Added by serg91 on Thu, 23 Apr 2020 18:15:23 +0300

Build CDN distribution network architecture

1. Questions: Hechuang technology has registered the domain name www.mvsc.com for the enterprise website and deployed two Nginx website servers. In order to improve the response speed of this site when serving users in different regions, hechuang technology purchased CDN cache service from bluenews. According to the needs of cache distribution, ...

Added by htmlstig on Mon, 20 Apr 2020 12:46:00 +0300

Write a WeChat Applet Development

Previously I saw a blog park on the web News Service Open Interface Because of the habit of watching IT news on the blog site, the idea of developing a WeChat applet using the open API came into being in order to browse the news concisely and conveniently anytime, anywhere. 1. mpvue Usually the technology stack has Vue, this applet function ...

Added by preet_harman83 on Fri, 17 Apr 2020 19:51:21 +0300