10.12 LNMP

yum install nginx php php-fpm mariadb-server php-mysql
php.conf
server {
    listen 8000;
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    location ~ \.php$ {
        root           /usr/share/php;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

 

posted @ 2021-04-16 18:44  huakai201  阅读(55)  评论(0编辑  收藏  举报