Detailed process of installing nginx1.9.1 on centos8

Detailed process of installing nginx1.9.1 on centos8

1.17.9 More delicious, really

Nginx download address: https://nginx.org/download/

1. Download nginx

wget https://nginx.org/download/nginx-1.9.9.tar.gz

2. Unzip nginx

tar -zxvf nginx-1.9.9.tar.gz

3. Install dependency packages

yum -y install gcc gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel

4. Configure nginx

cd nginx-1.9.9/
./configure \--prefix=/usr/local/nginx \--with-http_ssl_module \--conf-path=/usr/local/nginx/conf/nginx.conf \--pid-path=/usr/local/nginx/conf/nginx.pid \--lock-path=/var/lock/nginx.lock \--error-log-path=/var/logs/nginx/error.log \--http-log-path=/var/logs/nginx/access.log \--with-http_gzip_static_module \--http-client-body-temp-path=/var/temp/nginx/client \--http-proxy-temp-path=/var/temp/nginx/proxy \--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \--http-scgi-temp-path=/var/temp/nginx/scgi

5. Edit some configurations to prepare for the following make command

Edit the file nginx root directory: objs/Makefile

Edit file: src/os/unix/ngx_user.c

6. Compile

make

7. Installation

make install

8. Open port 80

Check whether port 80 is open:

firewall-cmd --zone=public --list-ports

If there is no 80/tcp, execute the following command to open the port

#Permanently open port 80 firewall-cmd --zone=public --add-port=80/tcp --permanent
#Update firewall rules firewall-cmd --reload

9. Start nginx

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

10. Web access

This is the end of this article about the detailed process of installing nginx1.9.1 on centos8. For more relevant content about installing nginx1.9.1 on centos8, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to install PHP7.4 and Nginx on Centos
  • Detailed tutorial for installing nginx on centos8 (picture and text)
  • Solve the problem of "Welcome to nginx on Fedora!" after installing nginx on Centos7, and there is no default.conf file in the conf.d directory
  • How to install Nginx in CentOS7 and configure automatic startup
  • Detailed tutorial on installing PHP and Nginx on Centos7
  • Detailed explanation of Centos7 source code compilation and installation of Nginx1.13

<<:  Use trigger method to realize pop-up file selection dialog box without clicking file type input

>>:  Summary of 76 Experience Points of User Experience

Recommend

JavaScript+html implements random QR code verification on front-end pages

Share the cool front-end page random QR code veri...

How to completely uninstall mysql under CentOS

This article records the complete uninstallation ...

How to configure Openbox for Linux desktop (recommended)

This article is part of a special series on the 2...

30 free high-quality English ribbon fonts

30 free high-quality English ribbon fonts for down...

Solution to 1290 error when importing file data in mysql

Error scenario Use the mysql command in cmd to ad...

Summary of various methods of implementing article dividing line styles with CSS

This article summarizes various ways to implement...

Vue implements login type switching

This article example shares the specific code of ...

HTML Nine-grid Layout Implementation Method

Diversifying website layouts is our front-end spe...

61 Things Every Web Developer Should Know

Normally, you'll need to read everyone's s...

Tutorial analysis of quick installation of mysql5.7 based on centos7

one. wget https://dev.mysql.com/get/mysql57-commu...

Recommend several MySQL related tools

Preface: With the continuous development of Inter...