nginx 编译安装,问题

复制代码
# 编译

./configure \
--prefix=/usr/local/nginx \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--with-http_dav_module \
--with-http_stub_status_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_mp4_module \

--with-openssl=/lvyou/env/openssl-source/openssl-1.1.1h # 静态编译 openssl  源代码


##
make && make install
复制代码
复制代码
location ~ {
            #proxy_redirect off;
            proxy_redirect http:// https://;  # 不写这个,tomcat的重定向 会给你重定向到 http!!切记 用这个,不用 off
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header X-Ssl off;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass http://127.0.0.1:8080;
        }
复制代码

参考文档  https://www.nginx.com/resources/wiki/start/topics/tutorials/installoptions/

./configure
    --sbin-path=/usr/local/nginx/nginx
    --conf-path=/usr/local/nginx/nginx.conf
    --pid-path=/usr/local/nginx/nginx.pid
    --with-http_ssl_module
    --with-pcre=../pcre-4.4
    --with-zlib=../zlib-1.1.3

 

posted on   正义的伙伴!  阅读(94)  评论(0编辑  收藏  举报

导航

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
//增加一段JS脚本,为目录生成使用
点击右上角即可分享
微信分享提示