Refs #250: Documentation - Fix php.ini comments from # to ;

This commit is contained in:
cytopia
2018-11-11 13:32:50 +01:00
parent b7862cd9bf
commit f91ef8d9cc
4 changed files with 30 additions and 30 deletions

View File

@ -66,19 +66,19 @@ The following example show how to configure PHP Xdebug for PHP 5.6:
:caption: xdebug.ini
:emphasize-lines: 6-7,11
# Defaults
; Defaults
xdebug.remote_enable=1
xdebug.remote_port=9000
# The Docker Toolbox way
; The Docker Toolbox way
xdebug.remote_connect_back=0
xdebug.remote_host=docker.for.lin.host.internal
# idekey value is specific to each editor
# Verify with your IDE/editor documentation
; idekey value is specific to each editor
; Verify with your IDE/editor documentation
xdebug.idekey=PHPSTORM
# Optional: Set to true to auto-start xdebug
; Optional: Set to true to auto-start xdebug
xdebug.remote_autostart=false
**4. Configure your IDE/editor**