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.

82 lines
2.7 KiB

  1. {# Copyright (C) 2014-2019 Maciej Delmanowski <drybjed@gmail.com>
  2. # Copyright (C) 2015-2019 DebOps <https://debops.org/>
  3. # SPDX-License-Identifier: GPL-3.0-only
  4. #}
  5. # This file is managed by Ansible, all changes will be lost
  6. # automatically generated by the maintainer scripts of phpmyadmin
  7. # any changes you make will be preserved, though your comments
  8. # will be lost! to change your settings you should edit this
  9. # file and then run "dpkg-reconfigure phpmyadmin"
  10. # dbc_install: configure database with dbconfig-common?
  11. # set to anything but "true" to opt out of assistance
  12. dbc_install='false'
  13. # dbc_upgrade: upgrade database with dbconfig-common?
  14. # set to anything but "true" to opt out of assistance
  15. dbc_upgrade='false'
  16. # dbc_remove: deconfigure database with dbconfig-common?
  17. # set to anything but "true" to opt out of assistance
  18. dbc_remove=''
  19. # dbc_dbtype: type of underlying database to use
  20. # this exists primarily to let dbconfig-common know what database
  21. # type to use when a package supports multiple database types.
  22. # don't change this value unless you know for certain that this
  23. # package supports multiple database types
  24. dbc_dbtype='mysql'
  25. # dbc_dbuser: database user
  26. # the name of the user who we will use to connect to the database.
  27. dbc_dbuser='{{ phpmyadmin_control_user }}'
  28. # dbc_dbpass: database user password
  29. # the password to use with the above username when connecting
  30. # to a database, if one is required
  31. dbc_dbpass='{{ phpmyadmin_control_password }}'
  32. # dbc_dbserver: database host.
  33. # leave unset to use localhost (or a more efficient local method
  34. # if it exists).
  35. dbc_dbserver=''
  36. # dbc_dbport: remote database port
  37. # leave unset to use the default. only applicable if you are
  38. # using a remote database.
  39. dbc_dbport=''
  40. # dbc_dbname: name of database
  41. # this is the name of your application's database.
  42. dbc_dbname='{{ phpmyadmin_control_database }}'
  43. # dbc_dbadmin: name of the administrative user
  44. # this is the administrative user that is used to create all of the above
  45. dbc_dbadmin='root'
  46. # dbc_basepath: base directory to hold database files
  47. # leave unset to use the default. only applicable if you are
  48. # using a local (filesystem based) database.
  49. dbc_basepath=''
  50. ##
  51. ## postgresql specific settings. if you don't use postgresql,
  52. ## you can safely ignore all of these
  53. ##
  54. # dbc_ssl: should we require ssl?
  55. # set to "true" to require that connections use ssl
  56. dbc_ssl=''
  57. # dbc_authmethod_admin: authentication method for admin
  58. # dbc_authmethod_user: authentication method for dbuser
  59. # see the section titled "AUTHENTICATION METHODS" in
  60. # /usr/share/doc/dbconfig-common/README.pgsql for more info
  61. dbc_authmethod_admin=''
  62. dbc_authmethod_user=''
  63. ##
  64. ## end postgresql specific settings
  65. ##