ini php_fpm_nginx.conf

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini php_fpm_nginx.conf相关的知识,希望对你有一定的参考价值。

server {     

    root /var/www/html/adminer;
    index index.php index.html index.htm;

    server_name adminer.local;

    location / {
            try_files $uri $uri/ /index.html;
    }

    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
          root /usr/share/nginx/www;
    }

    # pass the PHP scripts to FastCGI server listening on the php-fpm socket
    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include fastcgi_params;
            
    }

}

以上是关于ini php_fpm_nginx.conf的主要内容,如果未能解决你的问题,请参考以下文章

centos下php.ini配置项

在Delphi下,怎样在DLL里读取ini文件的内容

vb读写ini文件

在Delphi下,如何在DLL里攫取ini文件的内容

delphi同步读取ini文件

pycharm新建ini文件或创建ini文件失败