summaryrefslogtreecommitdiff
path: root/docker/config/php-ext-xdebug.ini
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-12 07:16:23 +0200
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-12 07:16:23 +0200
commit7076343338ae3439f3c86f01144818abe8c31978 (patch)
tree794abb1e6b8f821091fd095341885496b6dad51d /docker/config/php-ext-xdebug.ini
parent47cbb529f5723b246125ae083a193e11481b89ef (diff)
downloadclassroom-7076343338ae3439f3c86f01144818abe8c31978.tar.gz
classroom-7076343338ae3439f3c86f01144818abe8c31978.tar.bz2
classroom-7076343338ae3439f3c86f01144818abe8c31978.zip
add container helpers; constuct public directory-tree
Diffstat (limited to 'docker/config/php-ext-xdebug.ini')
-rw-r--r--docker/config/php-ext-xdebug.ini24
1 files changed, 24 insertions, 0 deletions
diff --git a/docker/config/php-ext-xdebug.ini b/docker/config/php-ext-xdebug.ini
new file mode 100644
index 0000000..4a6a2ed
--- /dev/null
+++ b/docker/config/php-ext-xdebug.ini
@@ -0,0 +1,24 @@
+; [xdebug]
+
+; uncomment next line to enable xdebug
+zend_extension=xdebug
+
+; modes where xdebug is enabled
+xdebug.mode=develop,debug
+
+; common parametres
+xdebug.start_with_request=yes
+xdebug.client_port=9003
+; xdebug.remote_handler=dbgp
+xdebug.idekey=VSCODE
+xdebug.client_host=host.docker.internal
+xdebug.log=/usr/local/etc/php/xdebug.log
+;error_reporting=E_ALL
+
+
+; Note:
+; Remove the comment ; to enable debugging
+;zend_extension=xdebug
+xdebug.client_host=host.docker.internal
+xdebug.start_with_request=yes
+xdebug.mode=debug \ No newline at end of file