美文网首页
nginx安装配置

nginx安装配置

作者: 发光的鱼 | 来源:发表于2018-07-10 15:58 被阅读0次

1.安装
使用yum进行安装

yum install nginx 
# ssl 
yum install openssl
yum install openssl-devel

2.nginx主要命令

nginx -s reload
nginx -s stop
nginx 

3.配置,http模块上添加如下

upstream tomcat_1 {  
    server ip:port;  
}
location / {
             proxy_pass https://tomcat_1;
        }

相关文章

网友评论

      本文标题:nginx安装配置

      本文链接:https://www.haomeiwen.com/subject/zotqpftx.html