ubuntu+nginx+php环境搭建


ubuntu+nginx+php环境搭建

就这么简单个事,百度出来的乱七八糟,各种方法混在一起。其实就几个命令的事,改个配置的事

apt install nginx 

apt install php-fpm

安装完成后,编辑nginx配置文件

/etc/nginx/sites-available/default

location ~ /.php$ {
        #       include snippets/fastcgi-php.conf;
        #
        #       # With php-fpm (or other unix sockets):
                fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
                fastcgi_index index.php;
                include fastcgi_params;
        #       # With php-cgi (or other tcp sockets):
        #       fastcgi_pass 127.0.0.1:9000;
        }

  

编辑/etc/nginx/fastcgi_params 最后两行加入

 

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO                $fastcgi_script_name;

  

启动服务

service php7.4-fpm start

servicer nginx start

完事

原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/272002.html

(0)
上一篇 2022年7月8日
下一篇 2022年7月8日

相关推荐

发表回复

登录后才能评论