You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

280 line
11 KiB

  1. name: probuddy-master
  2. type: php
  3. docroot: /src/client
  4. #docroot: /src/client/manager #manager console
  5. #docroot: /src/client/app #app
  6. php_version: "8.1"
  7. webserver_type: nginx-fpm
  8. xdebug_enabled: false
  9. additional_hostnames: []
  10. additional_fqdns: []
  11. database:
  12. type: mariadb
  13. version: "10.4"
  14. use_dns_when_possible: true
  15. composer_version: "2"
  16. web_environment: []
  17. router_http_port: 8091
  18. router_https_port: 8463
  19. # Key features of DDEV's config.yaml:
  20. # name: <projectname> # Name of the project, automatically provides
  21. # http://projectname.ddev.site and https://projectname.ddev.site
  22. # type: <projecttype> # backdrop, craftcms, django4, drupal6/7/8/9/10, laravel, magento, magento2, php, python, shopware6, silverstripe, typo3, wordpress
  23. # See https://ddev.readthedocs.io/en/latest/users/quickstart/ for more
  24. # information on the different project types
  25. # docroot: <relative_path> # Relative path to the directory containing index.php.
  26. # php_version: "8.1" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"
  27. # You can explicitly specify the webimage but this
  28. # is not recommended, as the images are often closely tied to DDEV's' behavior,
  29. # so this can break upgrades.
  30. # webimage: <docker_image> # nginx/php docker image.
  31. # database:
  32. # type: <dbtype> # mysql, mariadb, postgres
  33. # version: <version> # database version, like "10.4" or "8.0"
  34. # MariaDB versions can be 5.5-10.8 and 10.11, MySQL versions can be 5.5-8.0
  35. # PostgreSQL versions can be 9-16.
  36. # router_http_port: <port> # Port to be used for http (defaults to global configuration, usually 80)
  37. # router_https_port: <port> # Port for https (defaults to global configuration, usually 443)
  38. # xdebug_enabled: false # Set to true to enable Xdebug and "ddev start" or "ddev restart"
  39. # Note that for most people the commands
  40. # "ddev xdebug" to enable Xdebug and "ddev xdebug off" to disable it work better,
  41. # as leaving Xdebug enabled all the time is a big performance hit.
  42. # xhprof_enabled: false # Set to true to enable Xhprof and "ddev start" or "ddev restart"
  43. # Note that for most people the commands
  44. # "ddev xhprof" to enable Xhprof and "ddev xhprof off" to disable it work better,
  45. # as leaving Xhprof enabled all the time is a big performance hit.
  46. # webserver_type: nginx-fpm, apache-fpm, or nginx-gunicorn
  47. # timezone: Europe/Berlin
  48. # This is the timezone used in the containers and by PHP;
  49. # it can be set to any valid timezone,
  50. # see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  51. # For example Europe/Dublin or MST7MDT
  52. # composer_root: <relative_path>
  53. # Relative path to the Composer root directory from the project root. This is
  54. # the directory which contains the composer.json and where all Composer related
  55. # commands are executed.
  56. # composer_version: "2"
  57. # You can set it to "" or "2" (default) for Composer v2 or "1" for Composer v1
  58. # to use the latest major version available at the time your container is built.
  59. # It is also possible to use each other Composer version channel. This includes:
  60. # - 2.2 (latest Composer LTS version)
  61. # - stable
  62. # - preview
  63. # - snapshot
  64. # Alternatively, an explicit Composer version may be specified, for example "2.2.18".
  65. # To reinstall Composer after the image was built, run "ddev debug refresh".
  66. # nodejs_version: "18"
  67. # change from the default system Node.js version to any other version.
  68. # Numeric version numbers can be complete (i.e. 18.15.0) or
  69. # incomplete (18, 17.2, 16). 'lts' and 'latest' can be used as well along with
  70. # other named releases.
  71. # see https://www.npmjs.com/package/n#specifying-nodejs-versions
  72. # Note that you can continue using 'ddev nvm' or nvm inside the web container
  73. # to change the project's installed node version if you need to.
  74. # additional_hostnames:
  75. # - somename
  76. # - someothername
  77. # would provide http and https URLs for "somename.ddev.site"
  78. # and "someothername.ddev.site".
  79. # additional_fqdns:
  80. # - example.com
  81. # - sub1.example.com
  82. # would provide http and https URLs for "example.com" and "sub1.example.com"
  83. # Please take care with this because it can cause great confusion.
  84. # upload_dirs: "custom/upload/dir"
  85. #
  86. # upload_dirs:
  87. # - custom/upload/dir
  88. # - ../private
  89. #
  90. # would set the destination paths for ddev import-files to <docroot>/custom/upload/dir
  91. # When Mutagen is enabled this path is bind-mounted so that all the files
  92. # in the upload_dirs don't have to be synced into Mutagen.
  93. # disable_upload_dirs_warning: false
  94. # If true, turns off the normal warning that says
  95. # "You have Mutagen enabled and your 'php' project type doesn't have upload_dirs set"
  96. # ddev_version_constraint: ""
  97. # Example:
  98. # ddev_version_constraint: ">= 1.22.4"
  99. # This will enforce that the running ddev version is within this constraint.
  100. # See https://github.com/Masterminds/semver#checking-version-constraints for
  101. # supported constraint formats
  102. # working_dir:
  103. # web: /var/www/html
  104. # db: /home
  105. # would set the default working directory for the web and db services.
  106. # These values specify the destination directory for ddev ssh and the
  107. # directory in which commands passed into ddev exec are run.
  108. # omit_containers: [db, ddev-ssh-agent]
  109. # Currently only these containers are supported. Some containers can also be
  110. # omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit
  111. # the "db" container, several standard features of DDEV that access the
  112. # database container will be unusable. In the global configuration it is also
  113. # possible to omit ddev-router, but not here.
  114. # performance_mode: "global"
  115. # DDEV offers performance optimization strategies to improve the filesystem
  116. # performance depending on your host system. Should be configured globally.
  117. #
  118. # If set, will override the global config. Possible values are:
  119. # - "global": uses the value from the global config.
  120. # - "none": disables performance optimization for this project.
  121. # - "mutagen": enables Mutagen for this project.
  122. # - "nfs": enables NFS for this project.
  123. #
  124. # See https://ddev.readthedocs.io/en/latest/users/install/performance/#nfs
  125. # See https://ddev.readthedocs.io/en/latest/users/install/performance/#mutagen
  126. # fail_on_hook_fail: False
  127. # Decide whether 'ddev start' should be interrupted by a failing hook
  128. # host_https_port: "59002"
  129. # The host port binding for https can be explicitly specified. It is
  130. # dynamic unless otherwise specified.
  131. # This is not used by most people, most people use the *router* instead
  132. # of the localhost port.
  133. # host_webserver_port: "59001"
  134. # The host port binding for the ddev-webserver can be explicitly specified. It is
  135. # dynamic unless otherwise specified.
  136. # This is not used by most people, most people use the *router* instead
  137. # of the localhost port.
  138. # host_db_port: "59002"
  139. # The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic
  140. # unless explicitly specified.
  141. # mailpit_http_port: "8025"
  142. # mailpit_https_port: "8026"
  143. # The Mailpit ports can be changed from the default 8025 and 8026
  144. # host_mailpit_port: "8025"
  145. # The mailpit port is not normally bound on the host at all, instead being routed
  146. # through ddev-router, but it can be bound directly to localhost if specified here.
  147. # webimage_extra_packages: [php7.4-tidy, php-bcmath]
  148. # Extra Debian packages that are needed in the webimage can be added here
  149. # dbimage_extra_packages: [telnet,netcat]
  150. # Extra Debian packages that are needed in the dbimage can be added here
  151. # use_dns_when_possible: true
  152. # If the host has internet access and the domain configured can
  153. # successfully be looked up, DNS will be used for hostname resolution
  154. # instead of editing /etc/hosts
  155. # Defaults to true
  156. # project_tld: ddev.site
  157. # The top-level domain used for project URLs
  158. # The default "ddev.site" allows DNS lookup via a wildcard
  159. # If you prefer you can change this to "ddev.local" to preserve
  160. # pre-v1.9 behavior.
  161. # ngrok_args: --basic-auth username:pass1234
  162. # Provide extra flags to the "ngrok http" command, see
  163. # https://ngrok.com/docs/ngrok-agent/config or run "ngrok http -h"
  164. # disable_settings_management: false
  165. # If true, DDEV will not create CMS-specific settings files like
  166. # Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalConfiguration.php
  167. # In this case the user must provide all such settings.
  168. # You can inject environment variables into the web container with:
  169. # web_environment:
  170. # - SOMEENV=somevalue
  171. # - SOMEOTHERENV=someothervalue
  172. # no_project_mount: false
  173. # (Experimental) If true, DDEV will not mount the project into the web container;
  174. # the user is responsible for mounting it manually or via a script.
  175. # This is to enable experimentation with alternate file mounting strategies.
  176. # For advanced users only!
  177. # bind_all_interfaces: false
  178. # If true, host ports will be bound on all network interfaces,
  179. # not the localhost interface only. This means that ports
  180. # will be available on the local network if the host firewall
  181. # allows it.
  182. # default_container_timeout: 120
  183. # The default time that DDEV waits for all containers to become ready can be increased from
  184. # the default 120. This helps in importing huge databases, for example.
  185. #web_extra_exposed_ports:
  186. #- name: nodejs
  187. # container_port: 3000
  188. # http_port: 2999
  189. # https_port: 3000
  190. #- name: something
  191. # container_port: 4000
  192. # https_port: 4000
  193. # http_port: 3999
  194. # Allows a set of extra ports to be exposed via ddev-router
  195. # Fill in all three fields even if you don’t intend to use the https_port!
  196. # If you don’t add https_port, then it defaults to 0 and ddev-router will fail to start.
  197. #
  198. # The port behavior on the ddev-webserver must be arranged separately, for example
  199. # using web_extra_daemons.
  200. # For example, with a web app on port 3000 inside the container, this config would
  201. # expose that web app on https://<project>.ddev.site:9999 and http://<project>.ddev.site:9998
  202. # web_extra_exposed_ports:
  203. # - name: myapp
  204. # container_port: 3000
  205. # http_port: 9998
  206. # https_port: 9999
  207. #web_extra_daemons:
  208. #- name: "http-1"
  209. # command: "/var/www/html/node_modules/.bin/http-server -p 3000"
  210. # directory: /var/www/html
  211. #- name: "http-2"
  212. # command: "/var/www/html/node_modules/.bin/http-server /var/www/html/sub -p 3000"
  213. # directory: /var/www/html
  214. # override_config: false
  215. # By default, config.*.yaml files are *merged* into the configuration
  216. # But this means that some things can't be overridden
  217. # For example, if you have 'use_dns_when_possible: true'' you can't override it with a merge
  218. # and you can't erase existing hooks or all environment variables.
  219. # However, with "override_config: true" in a particular config.*.yaml file,
  220. # 'use_dns_when_possible: false' can override the existing values, and
  221. # hooks:
  222. # post-start: []
  223. # or
  224. # web_environment: []
  225. # or
  226. # additional_hostnames: []
  227. # can have their intended affect. 'override_config' affects only behavior of the
  228. # config.*.yaml file it exists in.
  229. # Many DDEV commands can be extended to run tasks before or after the
  230. # DDEV command is executed, for example "post-start", "post-import-db",
  231. # "pre-composer", "post-composer"
  232. # See https://ddev.readthedocs.io/en/stable/users/extend/custom-commands/ for more
  233. # information on the commands that can be extended and the tasks you can define
  234. # for them. Example:
  235. #hooks: