PHP7.0-fpm 在 Ubuntu Windows 子系统 Linux 上极慢

PHP7.0-fpm extremly slow on Ubuntu Windows Subsystem Linux

我最近安装了 Windows 子系统 Ubuntu shell 并将我的所有开发从 XAMPP 转移到 nginx 和 php7.0-fpm 安装ubuntu windows 子系统。

我面临的问题是 php 文件加载速度极慢。为了进行测试,我简单地输入

<?php phpinfo(); ?>

在文件中并执行它。系统确实花了两分钟 return 回复。我已经调试了很多,但找不到任何解决方案。

我是 运行 nginx 通过 nginx 服务器块并设置了我的本地域。

我确信 php 比较慢,因为我观察到如果我加载一个静态文件,即 txt 或 html 文件,它加载速度非常快。

下面是我的站点启用文件和 nginx conf 文件..

站点已启用

server {
    listen 80 ;
    listen [::]:80;

    root /mnt/c/xampp/htdocs/doit/;
    index index.html index.php;

    server_name doit.dev www.doit.dev;
    error_log /var/log/nginx/error.log;
    location / {
        try_files $uri $uri/ =404;
    }
    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_read_timeout 120;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

    location ~ /\.ht {
        deny all;
    }   
}

Nginx 配置文件:

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
    worker_connections 768;
    # multi_accept on;
}

http {

    ##
    # Basic Settings
    ##

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    # server_tokens off;

    server_names_hash_bucket_size 64;
    # server_name_in_redirect off;

    include /etc/nginx/mime.types;
    default_type application/octet-stream;

    ##
    # SSL Settings
    ##

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;

    ##
    # Logging Settings
    ##

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    ##
    # Gzip Settings
    ##

    gzip on;
    gzip_disable "msie6";

    # gzip_vary on;
    # gzip_proxied any;
    # gzip_comp_level 6;
    # gzip_buffers 16 8k;
    # gzip_http_version 1.1;
    # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

    ##
    # Virtual Host Configs
    ##

    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}


#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

nginx 和 php-fpm 工作的错误日志,没有针对错误的记录。

整理出来,粘贴给任何其他在 windows 子系统上使用 ubuntu 的爱好者。

默认的 Nginx 和 php 设置将使用 unix:socket,但这不适用于 WSL。此外,WSL 使用轻量级初始化系统,Nginx 的服务不会自动启动,PHP、MySQL 等


编辑/etc/nginx/sites-available/example.com.conf

注释掉fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;

并添加 fastcgi_pass 127.0.0.1:9000;


编辑 /etc/php/7.0/fpm/pool.d/www.conf

注释掉listen = /var/run/php/php7.0-fpm.sock;

并添加 listen = 127.0.0.1:9000;


它将解决您所有的问题。

使用 windows 10 v1803 和 nginx & php7 fpm 通过 WSL。

更改监听 127.0.0.1:9000 对我不起作用。

经过数小时的谷歌搜索后,我发现: https://github.com/Microsoft/WSL/issues/2100

即添加

fastcgi_buffering off;

到 nginx.conf,拯救我的一天。