Nginx installation steps

Nginx installation steps

Reference official website

http://nginx.org/en/docs/http/ngx_http_auth_request_module.html

download link:

http://nginx.org/en/download.html

nginx-1.14.2.tar.gz

Install Nginx dependency packages

yum install -y pcre pcre-devel
yum install -y openssl openssl-devel

yum install gcc gcc-c++ ncurses-devel perl

Unzip to /usr/local/nginx/nginx-1.14.2

Enter the directory to execute

./configure --prefix=/usr/local/nginx/nginx-85-lhbigdata/ --conf-path=/usr/local/nginx/nginx-85-lhbigdata/conf/nginx.conf --with-stream --with-http_auth_request_module --with-http_ssl_module --with-http_realip_module
make && make install

The red word is the directory you want to install

Self-starting

Out of service

nginx –s stop

Start the service as configured

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

Sample configuration

location /hlkt/sys/auth {
proxy_method POST;
proxy_cookie_path /sysmanager-web /hlkt;
proxy_pass http://10.10.180.33:8082/sysmanager-web/auth/check;
}

location /hlkt/req/sys/ {
proxy_cookie_path /sysmanager-web /hlkt;
proxy_pass http://10.10.180.33:8082/sysmanager-web/;
proxy_set_header X-Real-IP $proxy_add_x_forwarded_for;
}

location /hlkt/req/manager/ {
auth_request /hlkt/sys/auth;
proxy_pass http://10.10.180.33:8088/;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}

Guess you like

Origin blog.csdn.net/bestkuai666/article/details/114060260