特定的NGINX配置块,以允许运行特定的php脚本

时间:2019-06-06 12:05:56

标签: php nginx grafana

我的nginx配置中有以下代码块:

 # DOKUWIKI
location /dokuwiki/ {
    index doku.php;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Proxy "";
    include /config/nginx/proxy.conf;
    proxy_pass http://192.168.1.125:8888/;
    }

但希望能够在以下位置/ pushbullet中运行单独的PHP文件(pushbullet-proxy.php)

我可以使用:

   location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    # With php7-cgi alone:
    fastcgi_pass 127.0.0.1:9000;
    # With php7-fpm:
    #fastcgi_pass unix:/var/run/php7-fpm.sock;
        fastcgi_index index.php;
    include /etc/nginx/fastcgi_params;
    }

但是发现这会影响我的配置中的所有PHP文件和其他应用程序的螺钉。如何定义一个块,使我的pushbullet-proxy.php文件可以干净地执行而不会影响其他应用程序?

0 个答案:

没有答案