一聚教程网:一个值得你收藏的教程网站

热门教程

Ubuntu下安装配置Nginx+PHP环境

时间:2022-06-30 19:29:28 编辑:袖梨 来源:一聚教程网

安装Nginx 略

安装PHP

 代码如下 复制代码

sudo apt-get install php5-cli php5-cgi php5-fpm php5-mcryp

修改Nginx配置

 代码如下 复制代码

server {
        #listen   80; ## listen for ipv4; this line is default and implied
        #listen   [::]:80 default ipv6only=on; ## listen for ipv6
  
        #root /usr/share/nginx/www;
        root /path/to/your/project;
  
        index index.html index.htm index.php;
  
        # Make site accessible from http://localhost/
        server_name localhost;
  
        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to index.html
                try_files $uri $uri/ /index.html;
                # Uncomment to enable naxsi on this location
                # include /etc/nginx/naxsi.rules
        }
        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;
        }
}

热门栏目