win10子系统(wls)——主系统win10的nginx调用子系统的php
给win10搭建了子系统后把php安装到了子系统内,然后因为主系统的nginx配置了不少东西,就懒得往子系统移了,所以就以win10的nginx调用子系统fpm这样来用
1:将fpm改成端口号模式
修改文件为:/etc/php/7.3/fpm/pool.d/www.conf
注释listen = /run/php/php7.3-fpm.sock
新增listen = 127.0.0.1:9000
;listen = /run/php/php7.3-fpm.sock listen = 127.0.0.1:9000
注:www.conf文件没有的话就查看/etc/php/7.3/fpm/php-fpm.conf文件,有的版本直接写到这个文件里了,再没有就看这个文件内的include=/etc/php/7.3/fpm/pool.d/*.conf一行,在对应路径下找
修改完后重启phpfpm
2:配置nginx域名文件
server { listen 80; server_name www.abc.com; root "D:/php/WWW/abc"; location / { index index.php index.html error/index.html; error_page 403 /error/403.html; error_page 404 /error/404.html; error_page 500 /error/500.html; include D:/php/WWW/abc/nginx.htaccess; autoindex off; } location ~ \.php(.*)$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_split_path_info ^((?U).+\.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME /mnt/d/php/WWW/abc$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED /mnt/d/php/WWW/abc$fastcgi_path_info; include fastcgi_params; } }
a)server_name:域名(www.abc.com)
b)root:nginx访问目录(D:/php/WWW/abc)
c)fastcgi_param:fpm访问php文件路径(/mnt/d/php/www/abc)因为php-fpm是在子系统,所以文件路径要写成子系统模式的,原本的$document_root不可用,会报File not found错误
配置完重启nginx