ConfigurationΒΆ

The Axon.ivy Engine is configured by files. They are located in the /configuration directory of the engine. The ivy.yaml file contains the most important entries that define the environment and runtime behaviour of the Axon.ivy Engine.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
# sample ivy.yaml with some often used entries defined
SystemDb:
  Url: jdbc:mariadb://myDbHost:3306/AxonIvySystemDatabase
  UserName: root
  Password: 1234
Administrators:
  admin:
    Password: "${hash:1234}"
    Email: info@localhost
  devop:
    Password: "${hash:4321}"
    Email: dev@axonivy.com
EMail:
  Server:
    Host: smtp.gmail.com
    Port: 25
Frontend:
  HostName: workflow.acme.com
  Port: 80

Craft you own configuration

To craft your own configuration you would typically copy values from our reference files, located under [engineDir]/configuration/reference or see te File Reference and adjust them according to your needs. Alternative, you can also copy and modify whole templates, which are provided under [enginDir]/configuration/templates. Of course, most settings can also be adjusted in our Engine Cockpit.

Configure your engine