linux环境安装配置nginx
程序员文章站
2022-07-04 09:41:05
安装依赖 解压 安装nginx 配置Tomcat服务器 upstream tomcats{ server localhost:8080 weight=3; # weigh表示权重,越大访问的机率越多 server localhost:8880 weight=6; } location / { # 这 ......
安装依赖
yum install gcc yum install pcre-devel yum install zlib zlib-devel yum install openssl openssl-devel
解压
tar -zxvf nginx-1.13.7.tar.gz
安装nginx
//进入nginx目录 cd /usr/local/nginx //执行命令 ./configure
//执行make命令 make //执行make install命令 make install
配置tomcat服务器
cd /usr/local/nginx/conf
vi nginx.conf
upstream tomcats{
server localhost:8080 weight=3; # weigh表示权重,越大访问的机率越多
server localhost:8880 weight=6;
}
location / {
# 这里使用定义 serverlist
proxy_pass http://tomcats;
index index.html index.htm;
}
启动nginx
cd /usr/local/nginx/sbin/ ./nginx
推荐阅读
-
Linux中环境变量配置的步骤详解
-
win10系统下Anaconda+TensorFlow+Pycharm的下载安装与环境配置
-
VMware中linux环境下oracle安装图文教程(二)ORACLE 10.2.05版本的升级补丁安装
-
VMware中linux环境下oracle安装图文教程(一)
-
Linux NFS服务器的安装与配置方法(图文详解)
-
Linux Centos7.2下安装nodejs&npm配置全局路径的教程
-
Linux下配置和安装Domino 服务器 2
-
解决安装Domino for Linux时配置的Web服务器无法启动的问题
-
在Linux下配置和安装Domino 服务器的问题
-
ogre3d环境配置 SDK安装配置及简单事例教程