ubtunu16在线安装nginx前准备操作,反向代理实现运行操作
第一步:.安装前编译需要用到的库和工具
apt-get install build-essential libtool gcc automake autoconf make
第二步:安装pcre,支持重写rewrite功能
wget https://ftp.pcre.org/pub/pcre...
tar -zxvf pcre-8.40.tar.gz
cd pcre-8.40
./configure
make && make install
第三步:安装zlib, 支持gzip压缩
wget http://zlib.net/zlib-1.2.11.t...
tar -zxvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure
make && make install
第四步:安装ssl
wget https://www.openssl.org/sourc...
tar -zxvf openssl-1.0.2o.tar.gz
cd openssl-1.0.2o
./config
make && make install
第五步:安装nginx
wget http://nginx.org/download/ngi...
tar -zxvf nginx-1.13.12.tar.gz
cd nginx-1.13.12
./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=/root/pcre-8.40 \
--with-zlib=/root/zlib-1.2.11 \
--with-openssl=/root/openssl-1.0.2o --源码路径
make && make install
第五步:检查端口80是否被占用 然后启动nginx
netstat -ano|grep 80
/usr/local/nginx/nginx
第六步:ifconfig 查看ip 浏览器运行IP 运行成功
第七步:关闭防火墙
ufw disable
第八步:代理IP配置server 在 nginx.conf中
server {
listen 80; server_name manage.leyou.com; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location / { proxy_pass http://127.0.0.1:9001; proxy_connect_timeout 600; proxy_read_timeout 600; } } server { listen 80; server_name api.leyou.com; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; location / { proxy_pass http://127.0.0.1:10010; --写虚拟机IP 前面 本地cmd虚拟ip proxy_connect_timeout 600; proxy_read_timeout 600; } } 第九步:Switch Hosts 代理虚拟机IP ifcongfig 的ip 第十步:重新加载 nginx /usr/local/nginx/nginx -s reload ping manage.leyou.com 查看是否加载虚拟机 十一步: 客户端运行项目即可。 例如 manage.leyou.com/#/ -------------- 杀死进程80端口: 有效方法 sudo fuser -k 80/tcp