Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

297 rindas
12 KiB

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