大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
安装路径:/application/nginx-1.12.0
创新互联不只是一家网站建设的网络公司;我们对营销、技术、服务都有自己独特见解,公司采取“创意+综合+营销”一体化的方式为您提供更专业的服务!我们经历的每一步也许不一定是最完美的,但每一步都有值得深思的意义。我们珍视每一份信任,关注我们的网站制作、成都做网站质量和服务品质,在得到用户满意的同时,也能得到同行业的专业认可,能够为行业创新发展助力。未来将继续专注于技术创新,服务升级,满足企业一站式营销型网站建设需求,让再小的成都品牌网站建设也能产生价值!
安装编译需要的gcc和gcc-c++
yum install -y gcc gcc-c++
pcre-devel、openssl-devel、zlib-devel
yum install -y pcre pcre-devel openssl openssl-devel zlib zlib-devel
useradd -s /bin/false -M nginx
cd /tools wget http://nginx.org/download/nginx-1.12.0.tar.gz tar -zxf nginx-1.12.0.tar.gz
cd nginx-1.12.0 ./configure --user=nginx --group=nginx --prefix=/application/nginx-1.12.0/ --with-http_v2_module --with-http_ssl_module --with-http_sub_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre
make && make install
ln -s /application/nginx-1.12.0/ /application/nginx
创建nginx命令软链接到环境变量
ln -s /application/nginx/sbin/* /usr/local/sbin/
cd /application/nginx vim conf/nginx.conf
找到如下内容,删除注释字符,并将倒数第二行的 /scripts 替换为 $document_root
修改前
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
修改后
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
该段代码在server中的位置:
server {
listen 80;
server_name localhost;
location / {
root html;
index index.php index.html index.htm;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
注意:location ~ \.php$ {}块中root的值和location / {}块中root的值需要一致
nginx -t
nginx -c /application/nginx/conf/nginx.conf.bak
nginx
nginx -s stop
nginx -s reload
-s stop 快速停止nginx
-s quit 平滑停止nginx
-s reopen 重新打开日志文件
-s reload 平滑重载所有配置
[root@www nginx]# tree . ├── conf #配置文件目录 │ ├── fastcgi.conf │ ├── fastcgi.conf.default │ ├── fastcgi_params │ ├── fastcgi_params.default #fastcgi *配合php │ ├── koi-utf │ ├── koi-win │ ├── mime.types #mime 媒体类型 │ ├── mime.types.default │ ├── nginx.conf #nginx主配置文件 │ ├── nginx.conf.default │ ├── scgi_params │ ├── scgi_params.default │ ├── uwsgi_params │ ├── uwsgi_params.default │ └── win-utf ├── html #默认站点目录 │ ├── 50x.html │ └── index.html ├── logs #访问日志、错误日志、pid文件目录 │ ├── access.log #访问日志 │ ├── error.log #错误日志 │ └── nginx.pid #pid文件 └── sbin #命令目录 └── nginx #nginx命令文件