最近买着了一个速度还能够忍受又便宜的VPS,想着拿Nginx做个反代(ssl),上网上学习了一下,编译了一下Nginx。把命令在下面贴一下一同学习参考。
以ubuntu(debian)root用户运行以下命令:(所有安装包都是目前最新稳定版Latest Stable)
1 2 3 4 5 6 7 8 9 10 11 | cd /tmp apt-get update apt-get install gcc g++ make autoconf automake -y wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz wget http://www.openssl.org/source/openssl-1.0.2g.tar.gz wget http://zlib.net/zlib-1.2.8.tar.gz wget http://nginx.org/download/nginx-1.8.1.tar.gz tar zxvf *.tar.gz cd nginx-1.8.1 ./configure --with-threads --user=nobody --with-http_ssl_module --with-pcre=../pcre-8.37 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-1.0.2g make && make install |
安装目录/usr/local/nginx
nginx.conf路径/usr/local/nginx/conf/nginx.conf
nginx重启停止/usr/local/nginx/sbin/nginx -s reload(stop)
没有开机启动项,我是在/etc/rc.local里面加了一个……