Configuration
Out of the box extensions will attempt to read configuration details from:
/etc/ocis
$HOME/.ocis
./config
For this configuration to be picked up, have a look at your extension root
command and look for which default config name it has assigned. i.e: ocis-proxy reads proxy.json | yaml | toml ...
.
So far we support the file formats JSON
and YAML
, if you want to get a full example configuration just take a look at our repository, there you can always see the latest configuration format. These example configurations include all available options and the default values. The configuration file will be automatically loaded if it’s placed at /etc/ocis/ocis.yml
, ${HOME}/.ocis/ocis.yml
or $(pwd)/config/ocis.yml
.
If you prefer to configure the service with environment variables you can see the available variables below.
If multiple variables are listed for one option, they are in order of precedence. This means the leftmost variable will always win if given.
If you prefer to configure the service with commandline flags you can see the available variables below. Command line flags are only working when calling the subcommand directly.
Serve Graph API for oCIS
Usage: graph [global options] command [command options] [arguments...]
- -config-file | $GRAPH_CONFIG_FILE
- Path to config file.
- -log-level | $GRAPH_LOG_LEVEL
- Set logging level. Default:
info
. - -log-pretty | $GRAPH_LOG_PRETTY
- Enable pretty logging. Default:
true
. - -log-color | $GRAPH_LOG_COLOR
- Enable colored logging. Default:
true
.
Check health status
Usage: graph health [command options] [arguments...]
- -debug-addr | $GRAPH_DEBUG_ADDR
- Address to debug endpoint. Default:
0.0.0.0:9124
.
Start integrated server
Usage: graph server [command options] [arguments...]
- -tracing-enabled | $GRAPH_TRACING_ENABLED
- Enable sending traces.
- -tracing-type | $GRAPH_TRACING_TYPE
- Tracing backend type. Default:
jaeger
. - -tracing-endpoint | $GRAPH_TRACING_ENDPOINT
- Endpoint for the agent.
- -tracing-collector | $GRAPH_TRACING_COLLECTOR
- Endpoint for the collector.
- -tracing-service | $GRAPH_TRACING_SERVICE
- Service name for tracing. Default:
graph
. - -debug-addr | $GRAPH_DEBUG_ADDR
- Address to bind debug server. Default:
0.0.0.0:9124
. - -debug-token | $GRAPH_DEBUG_TOKEN
- Token to grant metrics access.
- -debug-pprof | $GRAPH_DEBUG_PPROF
- Enable pprof debugging.
- -debug-zpages | $GRAPH_DEBUG_ZPAGES
- Enable zpages debugging.
- -http-addr | $GRAPH_HTTP_ADDR
- Address to bind http server. Default:
0.0.0.0:9120
. - -http-root | $GRAPH_HTTP_ROOT
- Root path of http server. Default:
/
. - -http-namespace | $GRAPH_HTTP_NAMESPACE
- Set the base namespace for the http service for service discovery. Default:
com.owncloud.web
. - -ldap-network | $GRAPH_LDAP_NETWORK
- Network protocol to use to connect to the Ldap server. Default:
tcp
. - -ldap-address | $GRAPH_LDAP_ADDRESS
- Address to connect to the Ldap server. Default:
localhost:9125
. - -ldap-username | $GRAPH_LDAP_USERNAME
- User to bind to the Ldap server. Default:
cn=admin,dc=example,dc=org
. - -ldap-password | $GRAPH_LDAP_PASSWORD
- Password to bind to the Ldap server. Default:
admin
. - -ldap-basedn-users | $GRAPH_LDAP_BASEDN_USERS
- BaseDN to look for users. Default:
ou=users,dc=example,dc=org
. - -ldap-basedn-groups | $GRAPH_LDAP_BASEDN_GROUPS
- BaseDN to look for users. Default:
ou=groups,dc=example,dc=org
. - -oidc-endpoint | $GRAPH_OIDC_ENDPOINT
- OpenIDConnect endpoint. Default:
https://localhost:9130
. - -oidc-insecure | $GRAPH_OIDC_INSECURE
- OpenIDConnect endpoint.
- -oidc-realm | $GRAPH_OIDC_REALM
- OpenIDConnect realm.
- -reva-gateway-addr | $REVA_GATEWAY_ADDR
- REVA Gateway Endpoint. Default:
127.0.0.1:9142
.