我需要将端口9001用于我的CLI xdebug。
默认情况下,当我从PhpStorm调试时,会发送以下选项:
-dxdebug.remote_enable=1 -dxdebug.remote_mode=req -dxdebug.remote_port=9000 -dxdebug.remote_host=10.0.2.2 /home/vagrant/.phpstorm_helpers/phpunit.php --no-configuration --filter "/::get_me( .*)?$/"
所以我需要将9000替换为9001。
我尝试在“CLI解释器 - >配置选项”中添加xdebug.remote_port
选项,但不是覆盖它而只是附加它。
任何想法我可以在哪里覆盖它而不是追加它?
我不想更改一般的xdebug端口配置,因为php-fpm使用端口9000。