1. Install tools and libraries # PCRE is a Perl library that includes a Perl-compatible regular expression library. nginx's http module uses pcre to parse regular expressions # The zlib library provides many ways to compress and decompress. nginx uses zlib to gzip the contents of the http package. yum -y install gcc-c++ pcre pcre-devel zlib zlib-devel openssl openssl-devel 2. Directory Structure Source code directory: /home/werben/pkgsrc/nginx 3. Download and decompress the source code # Official website address: https://nginx.org/en/download.html 4. Create user groups and users groupadd www useradd -g www www 5. Compile source code ./configure --user=www --group=www --prefix=/home/werben/application/nginx --with-http_v2_module --with-http_ssl_module --with-http_sub_module --with-http_stub_status_module --with-http_gzip_static_module --with-http_flv_module --with-http_mp4_module --with-pcre make && make install 6. Mapping global commands ln -s /home/werben/application/nginx/sbin/nginx /usr/local/bin/nginx 7. Start, stop, restart nginx -s stop nginx -s quit ngins -s reload 8. Check the correctness of the configuration file nginx.conf nginx -t 9. Start automatically at boot vim /lib/systemd/system/nginx.service [Unit] Description=nginx After=network.target [Service] Type=forking ExecStart=nginx ExecReload=nginx reload ExecStop=nginx quit PrivateTmp=true [Install] WantedBy=multi-user.target #Reload the daemon process systemctl daemon-reload #Start nginx service systemctl start nginx.service #Stop the nginx service systemctl stop nginx.service #Set the system to start automatically at boot time systemctl enable nginx.service #Stop booting automatically systemctl disable nginx.service #View the current status of the service systemctl status nginx.service #Restart the service systemctl restart nginx.service #View all started services systemctl list-units --type=service 10. Problems and solutions #If `systemctl start nginx.service` prompts the following error: Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details. #Execute systemctl status nginx.service #If the following error occursProcess: 35783 ExecStart=...nginx/sbin/nginx(code=exitedstatus=203/EXEC) nginx.service: Control process exited, code=exited status=203 systemd[1]: nginx.service: Failed with result 'exit-code'. localhost.localdomain systemd[1]: Failed to start nginx. journalctl -xe #If you believe that systemd should be allowed execute access on the> Then you should report this as a bug. You can generate a local policy module to allow this access. Do allow this access for now by executing: # ausearch -c '(nginx)' --raw | audit2allow -M my-nginx # semodule -X 300 -i my-nginx.pp #Solution: setenforce 0 vim /etc/selinux/config SELINUX=disabled ps: Structure description of Nginx configuration file All Nginx configuration files are located in the /etc/nginx/ directory. The main configuration file of Nginx is /etc/nginx/nginx.conf. Creating a separate configuration file for each domain makes the server easier to maintain. Nginx server block files must end with .conf and are stored in the /etc/nginx/conf.d directory. You can have as many server blocks as you want. It is a good practice to follow standard naming conventions. For example, if the domain name is mydomain.com then the configuration file should be named mydomain.com.conf If you use repeatable configuration sections in your domain server blocks, it is a good idea to refactor these sections into fragments. Nginx log files (access.log and error.log) are located in the /var/log/nginx/ directory. It is recommended to have different access and error log files per server module. You can set the domain document root to anywhere you want. The most common locations for webroot include: /home/<user_name>/<site_name> /var/www/<site_name> /var/www/html/<site_name> /opt/<site_name> /usr/share/nginx/html Summarize The above is what I introduced to you about installing nginx in a custom directory on centos8. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: In-depth explanation of the locking mechanism in MySQL InnoDB
>>: Best Practices for Developing Amap Applications with Vue
1. Elements and tags in HTML <br />An eleme...
Table of contents Mistake 1: Too many columns of ...
Find the problem Recently, I encountered a proble...
Search online to delete duplicate data and keep t...
About Recently, in the process of learning Vue, I...
Table of contents Preface optimization SSR Import...
Table of contents DATETIME TIMESTAMP How to choos...
Disable SeLinux setenforce 0 Permanently closed: ...
This article example shares the specific code of ...
Table of contents No slots Vue2.x Slots With slot...
background Today, I was browsing CodePen and saw ...
The installation tutorial of MySQL 5.7.27 is reco...
Because the server's database hard disk space...
Table of contents What is a Promise? Usage of rej...
The main configuration file of Nginx is nginx.con...