current location:Home > Technical Articles > Operation and Maintenance > Nginx
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- How to solve nginx php file not executing time
- Step 1: View the current PHP execution time settings Before you start adjusting Nginx’s PHP execution time, you need to understand the current settings. You can check the current PHP execution time settings by executing the following command: php -i|grep "max_execution_time" This will output the current PHP execution time limit. By default, it is set to 30 seconds. Step 2: Modify the PHP execution time settings in Nginx To change the PHP execution time settings in Nginx, you need to edit the Nginx website configuration file. In this example, we assume that your Nginx site configuration files are located in /etc/nginx/sites-
- Nginx 1729 2023-05-12 09:34:06
-
- How to install and configure Windows nginx
- What is nginx? nginx (enginex) is a lightweight web server, reverse proxy server and email (imap/pop3) proxy server. What is a reverse proxy? The reverse proxy method refers to using a proxy server to accept connection requests on the Internet, then forwarding the requests to the server on the internal network, and returning the results obtained from the server to the client requesting the connection on the Internet. When the proxy server appears to the outside world as a reverse proxy server. Please refer to the example in the figure below: Installation and Use Installation nginx official website download address The release version is divided into linux and windows versions. You can also download the source code
- Nginx 1321 2023-05-12 09:22:05
-
- How to solve the problem of Nginx starting automatically in Centos7
- Regarding setting nginx to start automatically at boot in centos7, we can solve the problem by writing a self-start shell script at boot. Test environment operating system: centos764-bit 1611nginx version: 1.11.10 Configuration parameters during native nginx installation./configure\--prefix=/usr/local/nginx\--pid-path=/usr/local/nginx/logs /nginx.pid\--lock-path=/var/lock/nginx.lock\--error-log-path=/var/log/nginx/err
- Nginx 1222 2023-05-12 09:16:05
-
- What are the main application scenarios of Nginx?
- What Nginx can do 1. Reverse proxy 2. Load balancing 3. HTTP server (including dynamic and static separation) 4. Forward proxy The above is what I know about what Nginx can handle without relying on third-party modules. Each type is explained in detail below. Function How to do reverse proxy Reverse proxy should be the most common thing Nginx does. What is a reverse proxy? The following is what Baidu Encyclopedia says: The reverse proxy (ReverseProxy) method refers to using a proxy server to accept the Internet. The connection request is made on the Internet, and then the request is forwarded to the server on the internal network, and the result obtained from the server is returned to the client requesting the connection on the Internet. At this time, the proxy server appears as a reverse proxy service to the outside world.
- Nginx 2216 2023-05-12 09:07:11
-
- How to add mp4 streaming support to Nginx
- Download and copy the code as follows: #Download and decompress wgetwgettarzxfnginx_mod*.tar.gz configuration and add the copy code as follows: #View compilation parameters/usr/local/nginx/sbin/nginx-v#Enter the nginx (tengine) source code directory cdtengine*./ configure--add-module=../nginx_mod_h264_streaming-2.2.7\--user=www--group=www\--prefix=/usr/local/nginx\--with-pcre#Just mak
- Nginx 2325 2023-05-12 09:07:05
-
- How to install Nginx in Linux
- Prepare to install tools\1. Download Nginx from the Nginx official website. The version used here is: 1.13.6.\2. Upload the downloaded Nginx to Linux. Here, the /opt/nginx directory is used as an example. Run "tar-zxvfnginx-1.13.6.tar.gz" to decompress. \3. Switch to the /opt/nginx/nginx-1.13.6 directory and run ./configure for initial configuration. If the following prompt appears, it means that PCRE is not installed on the machine, and Nginx needs to rely on PCRE. PCRE needs to be installed manually. You can search and view it in the forum. Hands-on installation of pcrePCRE (PerlCo
- Nginx 1881 2023-05-12 09:04:15
-
- How to compile and install PHP and Nginx in Ubuntu
- Compile and install nginx, change directory to working folder: cd/usr/local/src, download pcre source code and install wgetftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar .gztar-zxvfpcre2-10.20.tar.gzmv./pcre2-10.20.tar.gz./pcrecdpcre./configure--prefix=/usr/local/pcremake&&makeinstall download zlib
- Nginx 1470 2023-05-12 08:58:05
-
- How to combine nginx with keepalived to achieve high availability
- Introduction to keepalived The function of keepalived is to detect the status of the server. If a web server is down or the work fails, keepalived will detect it and remove the faulty server from the system, and use other servers to replace the server's work. , when the server is working normally, keepalived will automatically add the server to the server group. All these tasks are completed automatically without manual intervention. All that needs to be done manually is to repair the faulty server. System architecture diagram implementation steps 1. Environment configuration 1.1 Install nginx and install related dependencies yuminstallpcre-develzlibzlib-developenssl
- Nginx 1423 2023-05-12 08:43:11
-
- How to configure multi-port and multi-domain name access in Nginx
- For multi-port access to the main domain name, set a record in dnsnameserver to point to the server IP and open the required port. Modify the nginx configuration file. For example, we have two services open to port 80 and port 8080. If there is iptable, open the port first: iptables-ainput-ptcp --dport80-jacceptiptables-ainput-ptcp--dport8080-jacceptModify the configuration file: #path:/usr/local/nginx/conf/nginx.confserver{listen80;server_namewww.xxx
- Nginx 2242 2023-05-12 08:43:05
-
- How to disable server_tokens item in Nginx configuration
- Disabling the server_tokens item in the Nginx configuration will cause the 404 page to display the current version number of Nginx when server_tokens is turned on. This is clearly unsafe as hackers could use this information to try vulnerabilities in the corresponding Nginx version. You only need to set server_tokensoff in the http module in nginx.conf, for example: server{listen192.168.0.25:80;Server_tokensoff;server_nametecmintlovesnginx.comwww.tecmintlovesnginx.com;a
- Nginx 3360 2023-05-12 08:37:21
-
- How to solve the problem of 503 after nginx proxy
- Problem: After configuring serve_name and adding the corresponding mapping in hosts, it does not take effect after restarting nginx. Solution: 1. Whether serve_name is set or not, after starting nginx, it can be accessed through localhost or windows10.microdone.cn; 2. According to this problem, check the network configuration: Operation steps: 1), win+r, enter regedit; 2), check the registry: Computer\HKEY__CURRENT__USER\Software\Microsoft\Windows\CurrentVersion\InternetSettings
- Nginx 5278 2023-05-12 08:34:21
-
- How to configure nginx gzip dynamic compression and static compression
- Dynamic compression Dynamic compression actually means that the nginx server compresses the compiled creation. You need to enable the following configuration in the http and https modules of nginx.conf: gzipon; #Enable gizo compression gzip_min_length1k; #gizp compression starting point, only if the file is larger than 1k Compression gzip_comp_level6;#The larger the compression level number, the smaller the compression, but the more performance consumption depends on the actual situation gzip_proxiedany;#Enabled when nginx is used as a reverse proxy. For details, see the official documentation: http://nginx.org/en/docs /http/ngx_http_gzip
- Nginx 3242 2023-05-12 08:25:23
-
- How to enable php error reporting function in Nginx
- Modify the php.ini configuration file First, we need to find the php.ini configuration file. You can find it in the terminal with the following command: php --ini This command will find the location of the php.ini configuration file. After getting the location of the php.ini configuration file, we can find the following two configuration items: display_errors=Offerror_reporting=E_ALL&~E_DEPRECATED&~E_STRICT. The above configuration items determine whether PHP displays error messages and error level settings. We need to set display_errors to On to enable PHP errors on the page
- Nginx 1062 2023-05-12 08:25:18
-
- How to configure Nginx user authentication page
- Preface application scenario: It is probably that the internal website needs to be accessed by external users, and at the same time, visitors cannot be given website account permissions, so restrictions are imposed at the nginx level. For example, in outsourcing projects, internal employees have accounts to operate documents, while outsourced employees do not have internal accounts, but they need to be able to see the documents. Therefore, setting user verification at the nginx level is the best and simplest option. In most cases, employers will not Open an account with basic access rights for outsourced employees. Prerequisites for user authentication at the nginx level: a corresponding password creation program is required, such as apache2-utils (debian, ubuntu) or httpd-tools (rhel/centos/oracle
- Nginx 2575 2023-05-12 08:10:11
-
- nginx expires method to control page caching
- Syntax: expires[time|epoch|max|pff] Default value: offexpires directive controls the "expires" and "cache-control" header information in the http response, and starts the function of controlling the page cache time: you can use positive or negative numbers . The value of the "expires" header will be set by adding the current system time to the set time value. The time value also controls the value of "cache-control": a negative number means no-cache, a positive number or zero means max-age=timeepoch: specify the value of "expires" as 1january,19
- Nginx 2021 2023-05-12 08:04:05