What does arangod.conf
look like for running TLS 1.2 on port 8529 with a self-signed certificate at /server.pem
? The current documentation lists only the parameters for starting the server, but not the equivalent arangod.conf
.
[database]
directory = /var/lib/arangodb3
[server]
endpoint = ssl://0.0.0.0:8529
authentication = true
threads = 0
statistics = true
uid = arangodb
enter code here
[scheduler]
threads = 0
[javascript]
startup-directory = /usr/share/arangodb3/js
app-path = /var/lib/arangodb3-apps
[log]
level = info
file = /var/log/arangodb3/arangod.log
[cluster]
data-path = /var/lib/arangodb3/cluster
log-path = /var/log/arangodb3/cluster
arangod-path = @SBINDIR@/arangod@PROGRAM_SUFFIX@
dbserver-config = @SYSCONFDIR@/arangod.conf
[ssl]
keyfile = /server.pem
protocol = 5
And when I start, nothing works.
I also tried, attempting to mirror the documentation,
[ssl]
keyfile = /server.pem /tmp/vocbase
protocol = 5
But still no luck.