Advertisement
Guest User

Untitled

a guest
Dec 28th, 2023
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #
  2. # Copyright (c) 2018-2022, FusionAuth, All Rights Reserved
  3. #
  4.  
  5. #------------------------------------------------------------------------------
  6. # Database
  7. # - Specify the URL and credentials for your database here
  8. # - Required on each node running FusionAuth App webservice
  9. #------------------------------------------------------------------------------
  10. database.url=<db-url-removed>
  11. database.username=<db-user-removed>
  12. database.password=<db-pass-removed>
  13.  
  14. #------------------------------------------------------------------------------
  15. # Additional MySQL database settings.
  16. # - When enabled, FusionAuth will ensure the necessary 'utf8mb4' configuration parameters to
  17. #   properly handle 4 byte unicode characters. FusionAuth will fail to start if not configured properly.
  18. # - This value is ignored if using PostgreSQL
  19. # - Only set to false if you understand the limitations not using 'utf8mb4' character sets.
  20. #------------------------------------------------------------------------------
  21. database.mysql.enforce-utf8mb4=true
  22.  
  23. #------------------------------------------------------------------------------
  24. # Search engine
  25. # - Required on each node to ensure it talks to the same search backend
  26. #------------------------------------------------------------------------------
  27.  
  28. # Specify the search engine type, accepted values are `database` and `elasticsearch`.
  29. # When configuring the search engine type to `elasticsearch`, you must configure the `fusionauth-app.search-servers` property as well.
  30. search.type=database
  31.  
  32. # Specify the location of your FusionAuth Search servers. Multiple values may be specified using a comma separator.
  33. # This configuration is used by FusionAuth App to connect to the ElasticSearch nodes. The specified port should be the
  34. # configured value for 'fusionauth-search.http-port'.
  35. #
  36. # Single host example: http://localhost:9021
  37. # Multiple hosts example: http://localhost:9021,http://192.168.1.42:9021
  38. #search.servers=http://localhost:9021
  39.  
  40.  
  41. #------------------------------------------------------------------------------
  42. # fusionauth-search
  43. # - Required on each node running FusionAuth Search
  44. #------------------------------------------------------------------------------
  45. fusionauth-search.transport.port=9020
  46. fusionauth-search.http.port=9021
  47. fusionauth-search.memory=512M
  48. fusionauth-search.additional-java-args=
  49.  
  50. # Special values include: _local_, _site_. Values can be combined in a comma separated list.
  51. fusionauth-search.hosts=_local_
  52.  
  53. # Specify the location of your FusionAuth Search Engine servers. Multiple values may be specified using a comma separator.
  54. # This configuration is used by ElasticSearch to configure clustering. The specified port should be the configured value
  55. # for 'fusionauth-search.transport-port'.
  56. #
  57. # Single host example: localhost:9020
  58. # Multiple hosts example: localhost:9020,192.168.1.42:9020
  59. fusionauth-search.servers=localhost:9020
  60.  
  61. # Specify the full path to the ElasticSearch data directory. This defaults to /usr/local/fusionauth/data/search/esv6
  62. # on Linux/Unix and %FUSIONAUTH_HOME%\data\search\esv6 on Windows if not specified
  63. fusionauth-search.data-directory=
  64.  
  65.  
  66. #------------------------------------------------------------------------------
  67. # fusionauth-app
  68. # - Required on each node running FusionAuth App webservice
  69. #------------------------------------------------------------------------------
  70.  
  71. # Optionally specify an addressable URL or IP address to access this node from other FusionAuth nodes.
  72. # - In most cases this should be left empty and it will be determined at runtime.
  73. # - Ideally this is a site local IP address that is not publicly routable but accessible from other FusionAuth nodes.
  74. fusionauth-app.url=
  75.  
  76. # Specify the HTTP ports for the FusionAuth webservice
  77. fusionauth-app.http.port=9011
  78.  
  79. # HTTPS support.
  80. #
  81. # To enable the TLS listener, you must provide a port, a private key, the server certificate and any intermediate certificates necessary. Root CA
  82. # certs should not be included.
  83. #
  84. # - The server and intermediate certificates must be concatenated into the same file/property.
  85. #
  86. # - If you have installed the certificate chain and key as files, set the appropriate filenames in
  87. #   fusionauth-app.https.certificate-file and fusionauth-app.https.private-key-file.
  88. #
  89. # - If you are setting the fields as PEM content (i.e. via an environment variable), use the
  90. #   fusionauth-app.https.certificate and fusionauth-app.https.private-key properties.
  91. #
  92. # - If both file and content-based properties are set, the content-based settings will take precedence.
  93. fusionauth-app.https.enabled=true
  94. fusionauth-app.https.port=443
  95. fusionauth-app.https.certificate-file=/usr/local/fusionauth/config/auth.invoicingapi.com-chain.pem
  96. fusionauth-app.https.private-key-file=/usr/local/fusionauth/config/auth.invoicingapi.com-key.pem
  97. fusionauth-app.https.certificate=
  98. fusionauth-app.https.private-key=
  99.  
  100.  
  101. # Specify the memory size here. You can use M for megabytes and G for gigabytes
  102. fusionauth-app.memory=512M
  103.  
  104. # Specify any additional JVM arguments here
  105. fusionauth-app.additional-java-args=
  106.  
  107. # Runtime Mode. During development use, 'development' this will allow you to utilize maintenance mode.
  108. # - Once you move into production, use 'production', this will disable maintenance mode.
  109. # - Possible values [production, development]
  110. fusionauth-app.runtime-mode=production
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement