1
0
Fork 0

Remove relative leftovers

This commit is contained in:
Andreas Streichardt 2016-04-25 15:19:16 +02:00
parent 22e1292420
commit 30686c70ba
12 changed files with 0 additions and 226 deletions

View File

@ -1,10 +1,5 @@
include(GNUInstallDirs)
option(USE_RELATIVE
"Do you want to have all path are relative to the binary"
OFF
)
# etc -------------------------------
set(ETCDIR "" CACHE path "System configuration directory (defaults to prefix/etc)")

View File

@ -1,85 +0,0 @@
# ArangoDB configuration file for running in docker containers
#
# Documentation:
# https://docs.arangodb.com/ConfigureArango/
#
temp-path = /tmp/arangodb
[database]
# We don't follow LHFS for docker, since the data directory will be mounted
# flat to the top of the container:
directory = /data
# directory = @LOCALSTATEDIR@/lib/arangodb
# directory = @HOMEDRIVE@/@HOMEPATH@/arangodb/databases
# maximal-journal-size = 33554432
[server]
# Specify the endpoint for HTTP requests by clients.
# tcp://ipv4-address:port
# tcp://[ipv6-address]:port
# ssl://ipv4-address:port
# ssl://[ipv6-address]:port
# unix:///path/to/socket
#
# Examples:
# endpoint = tcp://0.0.0.0:8529
# endpoint = tcp://127.0.0.1:8529
# endpoint = tcp://localhost:8529
# endpoint = tcp://myserver.arangodb.com:8529
# endpoint = tcp://[::]:8529
# endpoint = tcp://[fe80::21a:5df1:aede:98cf]:8529
#
# bind everything for docker, since we expect to have our own IP:
endpoint = tcp://0.0.0.0:8529
# resuse a port on restart or wait until it is freed by the operating system
# reuse-address = false
# disable authentication for the admin frontend
authentication = false
# number of server threads, 0 to use them all
# threads = 4
# the user and group are normally set in the start script
uid = arangodb
gid = arangodb
[scheduler]
# number of threads used for I/O, 0 will select a sensible number
# threads = 2
[javascript]
startup-directory = @PKGDATADIR@/js
# We don't follow LHFS for docker, since the apps directory will be mounted
# flat to the top of the container:
app-path = /apps
#app-path = @LOCALSTATEDIR@/lib/arangodb-apps
# app-path = @HOMEDRIVE@/@HOMEPATH@/arangodb/apps
# number of worker threads for V8
v8-contexts = 5
[log]
level = info
# We don't follow LHFS for docker, since the logs directory will be mounted
# flat to the top of the container:
file = /logs/arangodb.log
# file = @LOCALSTATEDIR@/log/arangodb/arangod.log
[cluster]
# We don't follow LHFS for docker, since the directories will be mounted
# flat to the top of the container:
data-path = /lib/cluster
log-path = /log/cluster
arangod-path = @SBINDIR@/arangod@PROGRAM_SUFFIX@
dbserver-config = @SYSCONFDIR@/arangod-docker.conf
coordinator-config = @SYSCONFDIR@/arangod-docker.conf
# data-path = @LOCALSTATEDIR@/lib/arangodb/cluster
# log-path = @LOCALSTATEDIR@/log/arangodb/cluster
# arangod-path = @SBINDIR@/arangod@PROGRAM_SUFFIX@
# dbserver-config = @SYSCONFDIR@/arangod.conf
# coordinator-config = @SYSCONFDIR@/arangod.conf

View File

@ -1,18 +0,0 @@
[database]
upgrade = false
upgrade-check = false
[server]
rest-server = false
authentication = false
# set number of threads to 1 so we don't have concurrency
threads = 1
[javascript]
startup-directory = ./js
app-path = ./js/apps
script = ./js/server/arango-dfdb.js
v8-contexts = 1
[log]
level = info

View File

@ -1,6 +0,0 @@
keep-alive = true
progress = true
[server]
authentication = false

View File

@ -1,31 +0,0 @@
[database]
# directory= /var/arangodb
# maximal-journal-size = 33554432
[server]
disable-authentication = true
endpoint = tcp://127.0.0.1:8529
threads = 10
keyfile = UnitTests/server.pem
# reuse-address = false
[scheduler]
threads = 2
[javascript]
startup-directory = ./js
app-path = ./js/apps
v8-contexts = 5
[log]
level = info
[cluster]
username = root
password =
data-path = ./cluster/data
log-path = ./cluster/log
arangod-path = ./bin/arangod
dbserver-config = ./etc/relative/arangod-dbserver.conf
coordinator-config = ./etc/relative/arangod-coordinator.conf

View File

@ -1,31 +0,0 @@
[database]
# directory= /var/arangodb
# maximal-journal-size = 33554432
[server]
disable-authentication = true
endpoint = tcp://127.0.0.1:8529
threads = 10
keyfile = UnitTests/server.pem
# reuse-address = false
[scheduler]
threads = 2
[javascript]
startup-directory = ./js
app-path = ./js/apps
v8-contexts = 5
[log]
level = info
[cluster]
username = root
password =
data-path = ./cluster/data
log-path = ./cluster/log
arangod-path = ./bin/arangod
dbserver-config = ./etc/relative/arangod-dbserver.conf
coordinator-config = ./etc/relative/arangod-coordinator.conf

View File

@ -1,20 +0,0 @@
[server]
authentication = false
endpoint = tcp://0.0.0.0:8529
[javascript]
startup-directory = ./js
app-path = ./js/apps
[log]
level = info
[cluster]
username = root
password =
data-path = ./cluster/data
log-path = ./cluster/log
arangod-path = ./bin/arangod
dbserver-config = ./etc/relative/arangod-dbserver.conf
coordinator-config = ./etc/relative/arangod-coordinator.conf

View File

@ -1,5 +0,0 @@
progress = true
[server]
authentication = false

View File

@ -1,3 +0,0 @@
[server]
authentication = false

View File

@ -1,5 +0,0 @@
progress = true
[server]
authentication = false

View File

@ -1,8 +0,0 @@
[console]
pretty-print = true
[server]
authentication = false
[javascript]
startup-directory = ./js

View File

@ -1,9 +0,0 @@
[console]
pretty-print = true
[server]
authentication = false
[javascript]
startup-directory = ./js
execute-string = require("@arangodb/foxx/manager").run(ARGUMENTS);