windows2個本地專案curl訪問

luobaobin發表於2020-09-25

1.nginx/conf/vhosts.conf新增fastcgi_pass埠

server {
        listen       80;
        server_name  www.myreport.com ;
        root   "D:\phpStudy\PHPTutorial\WWW\php/report\code\public";
        location / {
            index  index.html index.htm index.php;
            #autoindex  on;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9001;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }
}

2.git bash命令列開啟phpcgi

/d/phpStudy/PHPTutorial/php/php-5.6.27-nts/php-cgi.exe -b 127.0.0.1:9001 -c php.ini

相關文章