Music playback SPA using react + redux + react-router

r-music order As a hands-on project for the react technology stack, the project uses data from Cool Dogs and NetEase Cloud. Among them, pulling data from cool dogs is relatively easy; pulling data from NetEase cloud, refer to: https://binaryify.github.io/NeteaseCloudMusicApi/ Thank ScorpionJay Classmate, he did a lot of work in the early stage ...

Added by Phairest on Sun, 30 Jun 2019 20:38:10 +0300

Server installation and domain name resolution configuration of nginx reverse proxy (Linux)

brief introduction nginx is a lightweight web server and a reverse proxy server (domain name forwarding is the function of reverse proxy) 1.nginx can directly support rails and php programs 2. Can act as a reverse proxy server for HTTP 3. As a load balancing server 4. As a mail proxy server 5. Help front-end achieve dynamic a ...

Added by jana on Sun, 30 Jun 2019 05:23:32 +0300

Install lnmp service using yum on CentOS 6

zhuanzaidizhi: https://www.qiansw.com/yum-lnmp.html To demonstrate the simplicity of using linux, all the applications used in this article are installed using yum. Install CentOS System This article assumes that you have the ability to install the CentOS system and will not explain the installation process. The operating system used in thi ...

Added by four4swords on Fri, 28 Jun 2019 19:45:31 +0300

10 minutes proficiency in Nginx access log analysis statistics

brief introduction Many individual webmasters use nginx as a server when they set up their websites. In order to know how the websites are visited, there are usually two ways: Insert js into the front-end page using methods such as CNZZ, trigger js when the user accesses, and record access requests. Analyze nginx's access log to extract useful ...

Added by fazbob on Thu, 27 Jun 2019 19:13:09 +0300

nginx simple tutorial

nginx simple tutorial Catalog Summary Installation and use install Compiling Nginx from source code Windows Installation Use nginx configuration reality http reverse proxy configuration Load balancing configuration Web site has multiple webapp configurations https reverse proxy configuration Static Site Configuration Reference resources ...

Added by hesketh on Tue, 25 Jun 2019 02:17:43 +0300

CentOS 7.3 Compile and Install php7.1

Explain Installation of LNMP environments usually starts with mysql/mariadb installation, followed by nginx installation, followed by php installation. Install dependency packages [root@localhost ~]# yum -y install gcc [root@localhost ~]# yum -y install gcc++ [root@localhost ~]# yum -y install gcc-c++ [root@localhost ~]# yu ...

Added by bennyboywonder on Thu, 20 Jun 2019 01:17:28 +0300

Django deployment in Ubuntu 14.04.

Step one.   sudo apt-get update sudo apt-get upgrade Update first. The mainstream deployment of Django: nginx+uwsgi+django   Step 2, Install nginx sudo apt-get install nginx Install nginx. If you need to install the latest nginx, you need to download the source package from the official website for manual compilation. The approximate file struc ...

Added by importune on Sat, 15 Jun 2019 19:17:47 +0300

Nginx Series - Server Installation and Configuration

I. Installation 1. First install the missing dependency packages [root@bogon /]# yum -y install gcc gcc-c++ make libtool zlib zlib-devel openssl openssl-devel pcre pcre-devel 2. Download and decompress Nginx [root@bogon src]# wget http://nginx.org/download/nginx-1.13.3.tar.gz [root@bogon src]# tar xvf nginx-1.13.3.tar.gz [root@bogon src]# ...

Added by nade93 on Thu, 13 Jun 2019 02:17:02 +0300

System CTL enables nginx processes to automatically restart after hanging up

  Following the article on July 31, 2018: vim /lib/systemd/system/nginx.service   [Service]Restart=alwaysRestartSec=1Type=forkingPIDFile=/run/nginx.pid    systemctl daemon-reload systemctl start nginx After kill ing, the nginx will be automatically restarted. ------------------------------------------ If the original link is valid, ...

Added by Hoangsta on Wed, 12 Jun 2019 22:53:15 +0300

Load Balancing haproxy+keepalived, lvs+keepalived backend php+nginx framework

101,102 Machines haproxy settings 1. Unzip the file and enter the unzipped folder tar xvf haproxy-1.9.8.tar.gz cd haproxy-1.9.8 2. Compile and install haproxy, compile parameters make ARCH=x86_64 TARGET=linux2628 USE_PCRE=1 USE_OPENSSL=1 USE_ZLIB=1 USE_SYSTEMD=1 USE_CPU_AFFINITY=1 PREFIX=/usr/local/haproxy make install PREFIX=/usr/local/h ...

Added by double-f on Mon, 10 Jun 2019 20:38:52 +0300