отдельный xdebug на сервере, я хочу что бы хдебаг не кешировался вариншем.
в нжинкс у меня такое
map "$cookie_xdebug_session$arg_xdebug_session_start$arg_xdebug_session_stop" $php_backend {
"test" "unix:/var/run/php7-xdebug.sock";
"testtest" "unix:/var/run/php7-xdebug.sock";
"testtesttest" "unix:/var/run/php7-xdebug.sock";
default "unix:/var/run/php7-fpm.sock";
}
как добавить в исключения вот это?
"$cookie_xdebug_session$arg_xdebug_session_start$arg_xdebug_session_stop"
сам себе отвечаю sub vcl_recv { # always pass debug to backend. if (req.http.cookie ~ "XDEBUG_SESSION=") { return (pass); } } sub vcl_backend_response { # do not cache debug response if (bereq.http.cookie ~ "XDEBUG_SESSION=") { set beresp.ttl = 0s; set beresp.uncacheable = true; return (deliver); } }
Обсуждают сегодня