When the graphomate server is accessed for the first time it will create a folder called graphomate at the tomcat root folder with initial content. In this folder a file called auditing.db will be created which contains the data for the audits. Besides there will be three subfolders. The templates folder where templates will will be stored, the rulesets folder where rulesets will be stored and the config folder where two .ini-files will be created.
access.ini
Code Block | ||||
---|---|---|---|---|
| ||||
protected=true username=admin password=graphomate |
The parameter protected defines if the admin panel should be protected by username and password. Set to false to deactivate the protection.
If set to true the admin panel will promt for the username and password which are definded in the parameters with the identical name.
config.ini
Code Block | ||||
---|---|---|---|---|
| ||||
[templates] allow_delete=true allow_save=true allow_list=true [rulesets] allow_delete=true allow_save=true allow_list=true [audits] enable=true component_white_list= |
Parameters beginning with allow_ are boolean and define if the mentioned operation will be disabled on the API of the graphomate server. The header written in square brackets define for which resource the next parameters will match.
For the auditing the enable parameter einables the auditing in general.
The component_white_list is a list of component names or regual expressions separated by comma. If defines which components should be tracked by the standalone auditing component.