ubuntu 13.04 nginx php 装配
程序员文章站
2022-06-13 21:36:36
...
ubuntu 13.04 nginx php 安装
之前一直摸索,百度好多文章,得出一个最简单的安装方法,但是不知道是否正确,或者有什么遗漏的。
1.安装nginx
sudo apt-get install nginx
2.安装php
sudo apt-get install php5-fpm
3.配置nginx
sudo gedit /etc/nginx/sites-available/default
root /www;
index index.html index.htm index.php;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
}
4.启动nginx
sudo service nginx start
安装完毕,现在有两个问题,网上的很多文章都差不多,主要的差异在PHP安装和nginx配置哪里。
1.php是否只需要安装php5-fpm即可?
2. location ~ \.php$ {
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
include fastcgi_params;
}
各行的配置分别代表什么意思?
3.为什么使用fastcgi_pass 127.0.0.1:9000;就无法启动nginx?
之前一直摸索,百度好多文章,得出一个最简单的安装方法,但是不知道是否正确,或者有什么遗漏的。
1.安装nginx
sudo apt-get install nginx
2.安装php
sudo apt-get install php5-fpm
3.配置nginx
sudo gedit /etc/nginx/sites-available/default
root /www;
index index.html index.htm index.php;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
include fastcgi_params;
}
4.启动nginx
sudo service nginx start
安装完毕,现在有两个问题,网上的很多文章都差不多,主要的差异在PHP安装和nginx配置哪里。
1.php是否只需要安装php5-fpm即可?
2. location ~ \.php$ {
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_index index.php;
include fastcgi_params;
}
各行的配置分别代表什么意思?
3.为什么使用fastcgi_pass 127.0.0.1:9000;就无法启动nginx?
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
推荐阅读
-
ubuntu下搭建php开发环境(nginx+(cgi)php5fpm+memcached+xdebug)
-
Centos7下编译安装配置Nginx+PHP+MySql环境
-
ubuntu+nginx+php环境搭建方法分享
-
基于ubuntu下nginx+php+mysql安装配置的具体操作步骤
-
Ubuntu Linux系统下轻松架设nginx+php服务器应用
-
ubuntu下配置nginx+php+mysql详解
-
ubuntu 16.04下Nginx的原理、安装配置和卸载操作讲解
-
CentOS 6.3安装配置nginx+php+mysql
-
Ubuntu环境编译安装PHP和Nginx的方法
-
ubuntu10.04配置 nginx+php-fpm模式的详解
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论