时间:2021-07-01 10:21:17 帮助过:8人阅读
1. 安装 gcc / g++
# apt-get install build-essential
已安装的无视
2. 安装openssl:
# apt-get install openssl
# apt-get install libssl-dev
3. 安装pcre
下载源码:http://download.csdn.net/detail/wei_xiaox126/8304511
解压: tar xvf ....
# ./configure
# make && make install
4. 官网下载 nginx 源码包 http://nginx.org/
nginx-1.6.1 本地下载:http://download.csdn.net/detail/wei_xiaox126/8304547
5. 安装nginx
# tar xvf ...
# ./configure --prefix='your path'
# make && make install
6. 验证
# cd 'your path/sbin'
# ./nginx
打开网页,输入 192.168.1.111(这是我的ip)
会显示welcom to nginx!
以上就介绍了linux nginx轻量级服务器 - 安装篇,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。