Добрый день.
Есть машина (хост-машина), на которой установлена виртуальная машина. На виртуальной машине стоит CentOS 6 + apache + nginx: apache крутится на 8080 порте, nginx на 80 порте.
конфигурация хоста (который хочу дебажить) apache:
<VirtualHost *:8080>
ServerAdmin alex@troom.ru
ServerName tests.local
ServerAlias www.tests.local
DocumentRoot /home/httpdocs/tests.local/www
<Directory /home/httpdocs/tests.local/www>
Options Indexes FollowSymLinks
</Directory>
ErrorLog /home/httpdocs/tests.local/log/apache_error_log
CustomLog /home/httpdocs/tests.local/log/apache_access_log common
</VirtualHost>
server {
listen 80;
server_name tests.local www.tests.local;
access_log /home/httpdocs/tests.local/log/nginx_access_log main;
# Не кеширую статику
#location ~* \.(jpg|jpeg|gif|png|ico|css|bmp|avi|flv|swf|js|doc|docx|rtf|pdf|xls|xlsx|rar|zip|tbz|7z|tgz|tar|gz|bz2|ppt|txt|mid|midi|wav|exe|ttf|eof|svg|woff)$ {
# root /home/httpdocs/tests.local/www/;
# access_log off;
# expires 30d;
# add_header Cache-Control public;
#}
location ~ /\.ht {
deny all;
}
location / {
proxy_pass http://127.0.0.1:8080/;
proxy_redirect off;
log_not_found off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Connection close;
proxy_pass_header Content-Type;
proxy_pass_header Content-Disposition;
proxy_pass_header Content-Length;
proxy_connect_timeout 60;
proxy_send_timeout 90;
proxy_read_timeout 90;
}
}
zend_extension=/usr/lib64/php/modules/xdebug.so
[xdebug]
xdebug.default_enable=on
xdebug.remote_enable=on
xdebug.remote_autostart=on
xdebug.idekey="PHPSTORM"
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.auto_trace=off
xdebug.remote_log="/tmp/xdebug_log.log"
xdebug.profiler_output_dir="/tmp"
На хост-машине IDE PHPStorm, настройки xDebug: http://itmages.ru/image/view/3160521/49055edd http://itmages.ru/image/view/3160491/23862847
В Google Chrome установлено расширение xDebug helper.
При попытке дебага ничего не происходит, в лог xDebug пишется:
Log opened at 2015-11-02 12:05:34
I: Connecting to configured address/port: 127.0.0.1:9000.
E: Could not connect to client. :-(
Log closed at 2015-11-02 12:05:34
Помогите пожалуйста разобраться.