authentication:
enabled: true
defaultScheme: plainText
authorization:
enabled: true
cacheTTL: 10
cacheMaxEntries: 1000
CREATE ROLE admin;
CREATE ROLE analyst;
GRANT admin TO user1;
GRANT analyst TO user2;
GRANT TRAVERSE ON GRAPH graph1 TO admin;
GRANT READ ON GRAPH graph1.stores TO analyst;
data_encryption_options:
enabled: true
keystore: /path/to/keystore
keystore_password: password123
cipher_suites: [TLS_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_CBC_SHA]