记忆总是会慢慢褪去,所以让文字记住一切~
分类: Web开发
2015-12-16 14:28:44
# tar -zxvf openssl-1.0.2e.tar.gz # cd openssl-1.0.2e # ./config --prefix=/usr/local/openssl_1_0_2e # make # make install |
# tar -zxvf nginx-1.8.0.tar.gz # cd nginx-1.8.0 # ./configure --prefix=/usr/local/nginx_1_8_0 --with-http_ssl_module --with-pcre=../pcre-8.37 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-1.0.2e --with-http_stub_status_module # make # make install |
--with-http_ssl_module
|
#启用支持https模块
|
--with-pcre=../pcre-8.37 |
#指向解压的源码目录
|
--with-zlib=../zlib-1.2.8 |
#指向解压的源码目录
|
--with-openssl=../openssl-1.0.2e |
#指向解压的源码目录
|
--with-http_stub_status_module
|
#启用 nginx 的 NginxStatus 功能,用来监控 Nginx 的当前状态
|
# cd /usr/local/nginx_1_8_0/sbin/ # ./nginx #运行nginx # netstat -tlnp|grep 80 tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 15966/nginx |