CourseElementary2552
Course Introduction:If you have any questions, add WeChat: Le-studyg; the course content includes Nginx installation, process stopping principle, reload principle, process of loading configuration files, static service principle, HTTP reverse proxy principle, gRPC reverse proxy principle, load balancing principle, etc. . In addition, the course also covers ways to implement a simple static server using different programming languages such as Golang, Python, PHP, C, and C++. Finally, the course will be summarized and explained. By studying this course, you will have an in-depth understanding of the various functions and principles of Nginx, as well as how to use different programming languages to implement a simple static server. This will help you better understand and apply Nginx, and build simple static servers in different language environments.
CourseAdvanced19842
Course Introduction:Nginx ("engine x") is a high-performance HTTP and reverse proxy server, as well as an IMAP/POP3/SMTP server. Nginx was developed by Igor Sysoev for Russia's second most visited Rambler.ru site. The first public version 0.1.0 was released on October 4, 2004. It releases source code under a BSD-like license and is known for its stability, rich feature set, sample configuration files, and low system resource consumption. On June 1, 2011, nginx 1.0.4 was released.
CourseElementary24238
Course Introduction:"Nginx Basics Introductory Video Tutorial" This course is recorded by Boolean Education and is taught by Yan Shiba. Anyone who knows Shiba should know that the class he teaches is quite good. Nginx ("engine x") is a high-performance HTTP and reverse proxy server, also an IMAP/POP3/SMTP server. Students who want to learn nginx can come in and take a look!
2017-05-16 17:14:01 0 2 424
server - Nginx configuration webapp problem
2017-05-16 17:15:55 0 2 533
2017-05-16 17:07:19 0 2 601
2017-05-16 17:18:20 0 1 968
Course Introduction:Common nginx commands: 1. Check the version number [nginx -v]; 2. Check the nginx compilation parameters [nginx -V]; 3. Restart and reload the configuration file [nginx.conf/usr/local/nginx/sbin/ nginx -s reload].
2020-06-17 comment 03440
Course Introduction:Method to completely uninstall nginx: 1. Execute the [sudo find / -name nginx*] command to find nginx-related files; 2. Execute the [sudo rm -rf file nginx file] command to delete all nginx-related files.
2020-07-04 comment 03884
Course Introduction:How to install dependency packages in nginx: 1. Execute the command [yum install pcre pcre-devel -y]; 2. Execute the command [yum install openssl openssl-devel -y]; 3. Compile the command; 4. Check the nginx configuration file.
2020-07-01 comment 06283
Course Introduction:Deployment of nginx under centos7.3: 1. Download epel-release and install it; 2. Install nginx with yum; 3. Refresh the nginx configuration; 4. Edit the /etc/nginx/nginx.conf configuration file.
2020-08-26 comment 02572
Course Introduction:The way nginx achieves high performance is: 1. Time-driven model, nginx is based on asynchronous and non-blocking event-driven model; 2. Multi-process mechanism; 3. Memory pool; 4. Modular design, the highly modular design is nginx's Architecture basics.
2020-06-08 comment 03531