第一步:.安装前编译需要用到的库和工具
apt-get install build-essential libtool gcc automake autoconf make
第二步:安装pcre,支持重写rewrite功能
wget /pub/pcre/pcre-8.
tar -zxvf pcre-8.
cd pcre-8.40
./configure
make && make install
第三步:安装zlib, 支持gzip压缩
wget /zlib-1.2.
tar -zxvf zlib-1.2.
cd zlib-1.2.11
./configure
make && make install
第四步:安装ssl
wget /source/openssl-1.0.
tar -zxvf openssl-1.0.
cd openssl-1.0.2o
./config
make && make install
第五步:安装nginx
wget /download/nginx-1.13.
tar -zxvf nginx-1.13.
cd nginx-1.13.12
./configure --sbin-path=/usr/local/nginx/nginx
–conf-path=/usr/local/nginx/
–pid-path=/usr/local/nginx/
–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 在 中
server {
listen 80;
server_name ;
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 ;
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 查看是否加载虚拟机
十一步: 客户端运行项目即可。 例如 /#/
--------------
杀死进程80端口: 有效方法 sudo fuser -k 80/tcp