安装 PCRE :
网站:http://pcre.org/
下载:
安装 Nginx :
安装命令:
下载:
wget http://nginx.org/download/nginx-1.8.0.tar.gz
tar zxf nginx-1.8.0.tar.gz
cd nginx-1.8.0
./configure --prefix=/usr/local/nginx
make
sudo make install
./configure --prefix=/usr/local/nginx
--sbin-path=/usr/local/nginx/nginx
--conf-path=/usr/local/nginx/nginx.conf
--pid-path=/usr/local/nginx/nginx.pid
--with-http_ssl_module
ps -ef |grep nginx
启动Nginx:
sudo /usr/local/nginx/sbin/nginx
重新加载配置文件:
sudo /usr/local/nginx/sbin/nginx -t
sudo /usr/local/nginx/sbin/nginx -s reload
查看Nginx版本:
/usr/local/nginx/sbin/nginx -V
Mac-mini:nginx-1.8.0 WangTom$ /usr/local/nginx/sbin/nginx -V
nginx version: nginx/1.8.0
built by clang 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
configure arguments: --prefix=/usr/local/nginx
Mac-mini:nginx-1.8.0 WangTom$ /usr/local/nginx/sbin/nginx -v
nginx version: nginx/1.8.0
检查是否安装成功:
访问: http://localhost/
页面出现:
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
查看 Nginx 版本:
Mac-mini:html WangTom$ sudo /usr/local/nginx/sbin/nginx -v
nginx version: nginx/1.8.0
检测 Nginx 配置文件
Mac-mini:html WangTom$ sudo /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
To apply the new configuration, start nginx if it is not yet started or send the reload signal to the nginx’s master process, by executing:
Mac-mini:html WangTom$ sudo /usr/local/nginx/sbin/nginx -s reload
Mac-mini:html WangTom$
参考地址:
Building nginx from Sources:
http://nginx.org/en/docs/configure.html
[END]