@@ -3,8 +3,6 @@ type: php
33docroot : .test
44php_version : " 8.3"
55webserver_type : apache-fpm
6- router_http_port : " 80"
7- router_https_port : " 443"
86xdebug_enabled : false
97additional_hostnames :
108 - 12.t3api
@@ -31,14 +29,13 @@ corepack_enable: false
3129# name: <projectname> # Name of the project, automatically provides
3230# http://projectname.ddev.site and https://projectname.ddev.site
3331
34- # type: <projecttype> # backdrop, craftcms, django4 , drupal, drupal6, drupal7, laravel, magento, magento2, php, python, shopware6, silverstripe, typo3, wordpress
32+ # type: <projecttype> # backdrop, cakephp, craftcms , drupal, drupal6, drupal7, drupal8, drupal9, drupal10, drupal11, generic, laravel, magento, magento2, php, shopware6, silverstripe, symfony , typo3, wordpress
3533# See https://ddev.readthedocs.io/en/stable/users/quickstart/ for more
3634# information on the different project types
37- # "drupal" covers recent Drupal 8+
3835
3936# docroot: <relative_path> # Relative path to the directory containing index.php.
4037
41- # php_version: "8.2 " # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"
38+ # php_version: "8.3 " # PHP version to use, "5.6" through "8.4"
4239
4340# You can explicitly specify the webimage but this
4441# is not recommended, as the images are often closely tied to DDEV's' behavior,
@@ -51,7 +48,7 @@ corepack_enable: false
5148# version: <version> # database version, like "10.11" or "8.0"
5249# MariaDB versions can be 5.5-10.8, 10.11, and 11.4.
5350# MySQL versions can be 5.5-8.0.
54- # PostgreSQL versions can be 9-16 .
51+ # PostgreSQL versions can be 9-17 .
5552
5653# router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80)
5754# router_https_port: <port> # Port for https (defaults to global configuration, usually 443)
@@ -61,14 +58,33 @@ corepack_enable: false
6158# "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better,
6259# as leaving Xdebug enabled all the time is a big performance hit.
6360
61+ # xhgui_https_port: 8142
62+ # Can be used to change the router https port for xhgui application
63+ # Very rarely used
64+
65+ # xhgui_http_port: 8143
66+ # Can be used to change the router http port for xhgui application
67+ # Very rarely used
68+
69+ # host_xhgui_port: 8142
70+ # Can be used to change the host binding port of the xhgui
71+ # application. Rarely used; only when port conflict and
72+ # bind_all_ports is used (normally with router disabled)
73+
6474# xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart"
6575# Note that for most people the commands
6676# "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better,
6777# as leaving Xhprof enabled all the time is a big performance hit.
6878
69- # webserver_type: nginx-fpm, apache-fpm, or nginx-gunicorn
79+ # xhprof_mode: [prepend|xhgui|global]
80+ # Set to "xhgui" to enable XHGui features
81+ # "xhgui" will become default in a future major release
82+
83+ # webserver_type: nginx-fpm, apache-fpm, generic
7084
7185# timezone: Europe/Berlin
86+ # If timezone is unset, DDEV will attempt to derive it from the host system timezone
87+ # using the $TZ environment variable or the /etc/localtime symlink.
7288# This is the timezone used in the containers and by PHP;
7389# it can be set to any valid timezone,
7490# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
@@ -88,9 +104,9 @@ corepack_enable: false
88104# - preview
89105# - snapshot
90106# Alternatively, an explicit Composer version may be specified, for example "2.2.18".
91- # To reinstall Composer after the image was built, run "ddev debug refresh ".
107+ # To reinstall Composer after the image was built, run "ddev debug rebuild ".
92108
93- # nodejs_version: "20 "
109+ # nodejs_version: "22 "
94110# change from the default system Node.js version to any other version.
95111# See https://ddev.readthedocs.io/en/stable/users/configuration/config/#nodejs_version for more information
96112# and https://www.npmjs.com/package/n#specifying-nodejs-versions for the full documentation,
@@ -216,8 +232,8 @@ corepack_enable: false
216232
217233# You can inject environment variables into the web container with:
218234# web_environment:
219- # - SOMEENV=somevalue
220- # - SOMEOTHERENV=someothervalue
235+ # - SOMEENV=somevalue
236+ # - SOMEOTHERENV=someothervalue
221237
222238# no_project_mount: false
223239# (Experimental) If true, DDEV will not mount the project into the web container;
0 commit comments