欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx+php之任意类型(.py)解释为php配置方式

程序员文章站 2022-05-02 08:25:21
...
以.py文件为例

1.在ngxin.conf配置location

...
server {
    listen       80 default;
    server_name  _;
        index index.html index.htm index.php;
        root /alidata/www/default;
        location ~ .*\.(php|php5|py)?$
        {
                fastcgi_pass  127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi.conf;
        }
        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
                expires 30d;
        }
        location ~ .*\.(js|css)?$
        {
                expires 1h;
        }
        access_log  /alidata/log/nginx/access/default.log;
}
...

2.修改php-fpm.conf配置文件

security.limit_extensions = .php .php3 .php4 .php5 .py

以上就介绍了nginx+php之任意类型(.py)解释为php配置方式,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。