mirror of https://gitee.com/bigwinds/arangodb
added config for arangob
This commit is contained in:
parent
440beec4d3
commit
6b70bf6616
|
@ -72,6 +72,7 @@ arangod/Ahuacatl/ahuacatl-grammar.h
|
|||
arangod/Ahuacatl/ahuacatl-grammar.output
|
||||
arangod/Ahuacatl/ahuacatl-tokens.c
|
||||
bin/
|
||||
etc/arangodb/arangob.conf
|
||||
etc/arangodb/arangod-uid.conf
|
||||
etc/arangodb/arangod.conf
|
||||
etc/arangodb/arangoirb.conf
|
||||
|
@ -87,7 +88,6 @@ lib/V8/v8-json.cpp
|
|||
cppcheck.log
|
||||
cppcheck.tmp
|
||||
|
||||
Installation/arangod.conf
|
||||
Installation/epm/arangodb.sublist
|
||||
nbproject/
|
||||
|
||||
|
|
13
CHANGELOG
13
CHANGELOG
|
@ -1,6 +1,19 @@
|
|||
v1.4
|
||||
----
|
||||
|
||||
* make the Foxx manager use per-database app directories
|
||||
|
||||
Each database now has its own subdirectory for Foxx applications. Each database
|
||||
can thus use different Foxx applications if required. A Foxx app for a specific
|
||||
database resides in `<app-path>/databases/<database-name>/<app-name>`.
|
||||
|
||||
System apps are shared between all databases. They reside in `<app-path>/system/<app-name>`.
|
||||
|
||||
* only trigger an engine reset in development mode for URLs starting with `/dev/`
|
||||
|
||||
This prevents ArangoDB from reloading all Foxx applications when it is not
|
||||
actually necessary.
|
||||
|
||||
* changed error code from 10 (bad parameter) to 1232 (invalid key generator) for
|
||||
errors that are due to an invalid key generator specification when creating a new
|
||||
collection
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
## -----------------------------------------------------------------------------
|
||||
|
||||
BUILT_SOURCES += \
|
||||
etc/arangodb/arangob.conf \
|
||||
etc/arangodb/arangod.conf \
|
||||
etc/arangodb/arangoirb.conf \
|
||||
etc/arangodb/arangosh.conf
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
keep-alive = true
|
||||
progress = true
|
||||
|
||||
[server]
|
||||
endpoint = tcp://localhost:8529
|
||||
disable-authentcation = true
|
Loading…
Reference in New Issue