时间:2021-07-01 10:21:17 帮助过:19人阅读
首先,我们需要下载安装php5
cd /usr/local/src/wget http://cn2.php.com/get/php-5.5.33.tar.bz2/from/this/mirror
官网http://php.com/downloads.php
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
2 nginx配置
http://nginx.org/en/download.html
下载 wget http://nginx.org/download/nginx-1.6.3.tar.gz
cd nginx-1.6.3
./configure --prefix=/usr/local/nginx-1.6.3 --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre
make
make install
绍,让大家大致明白生成配置文件的介绍
–with-http_stub_status_module:支持nginx状态查询
–with-http_ssl_module:支持https
–with-http_spdy_module:支持google的spdy,想了解请百度spdy,这个必须有ssl的支持
–with-pcre:为了支持rewrite重写功能,必须制定pcre
最后输出如下内容,表示configure OK了。
checking for zlib library ... found
creating objs/Makefile
Configuration summary
+ using system PCRE library
+ using system OpenSSL library
+ md5: using OpenSSL library
+ sha1: using OpenSSL library
+ using system zlib library
nginx path prefix: "/usr/local/nginx-1.5.1"
nginx binary file: "/usr/local/nginx-1.5.1/sbin/nginx"
nginx configuration prefix: "/usr/local/nginx-1.5.1/conf"
nginx configuration file: "/usr/local/nginx-1.5.1/conf/nginx.conf"
nginx pid file: "/usr/local/nginx-1.5.1/logs/nginx.pid"
nginx error log file: "/usr/local/nginx-1.5.1/logs/error.log"
nginx http access log file: "/usr/local/nginx-1.5.1/logs/access.log"
nginx http client request body temporary files: "client_body_temp"
nginx http proxy temporary files: "proxy_temp"
nginx http fastcgi temporary files: "fastcgi_temp"
nginx http uwsgi temporary files: "uwsgi_temp"
nginx http scgi temporary files: "scgi_temp"
# make //确定你的服务器有安装make,如果没有安装请执行yum install make
# make install
好了,nginx的安装还是非常的简单的,当然这里没有过多的介绍关于nginx遇到的问题。因为问题可能类型会非常的多,大家可以根据具体的错误的提示的内容,直接Google或者百度一下就可以了。下面我们来说说关于nginx的启动、关闭、重置nginx的内容。
启动:直接执行以下命令,nginx就启动了,不需要改任何配置文件,nginx配置多域名虚拟主机请参考后续文章.
/usr/local/nginx-1.5.1/sbin/nginx
测试一下我们的nginx是否可以成功的启动了
[root@ns conf]# curl -s http://localhost | grep nginx.com
nginx.com.
接下来说说如何进行把nginx的服务关闭掉,我们可以通过下面的方式
/usr/local/nginx-1.5.1/sbin/nginx -s stop
新窗口
当然,在我们的nginx运行过程中,可能你需要修改nginx的相关配置,可以重置加载配置信息
/usr/local/nginx-1.5.1/sbin/nginx -s reload
以上就介绍了linux搭建php5 nginx,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。