This repository was archived by the owner on Oct 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdev.env
87 lines (68 loc) · 1.71 KB
/
dev.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
###
# Nunux Keeper dev configuration
###
# Server port
# Default: 3000
APP_PORT=3000
# Server base URL (Realm)
# Default: http://localhost
#APP_REALM=http://keeper.nunux.org
# Application logger level
# Default: debug
APP_LOG=debug
# Automatic grant access
# Default: true
APP_AUTO_GRANT_ACCESS=false
# Session secret key
# Default: NuNUXKeEpR_
#APP_SESSION_SECRET=NuNUXKeEpR_
# Admin account(s)
# Comma-separated values of email.
# Elastic search URI
# Default: http://localhost:9200
APP_ELASTICSEARCH_URI=http://elasticsearch:9200
# MongoDB URI
# Default: mongodb://localhost/keeper
APP_MONGO_URI=mongodb://mongodb/keeper
# Redis URI
# Default: redis://localhost:6379/5
APP_REDIS_URI=redis://redis:6379/5
# Application data directory
# Default: ./var
APP_VAR_DIR=/var/opt/keeper
# Download document's resources
# Default: default
# Values:
# - disabled: no resource downloaded
# - async-redis: async download using Redis as queuing system
# - default: direct download
APP_DOWNLOADER=default
# Search engine
# Default: default
# Values:
# - disabled: no search engine
# - default: using elasticsearch
APP_SEARCH_ENGINE=default
# Storage backend
# Default: local
# Values:
# - local: local file system
# - s3: S3 object storage (NOT STABLE)
APP_STORAGE=local
#APP_STORAGE_S3_HOST=fr-1.storage.online.net
#APP_STORAGE_S3_BUCKET=keeper
#APP_STORAGE_S3_ACCESS_KEY=###
#APP_STORAGE_S3_SECRET_KEY=###
# OAuth providers
# -----------------
# Google configuration:
#APP_GOOGLE_KEY=###
#APP_GOOGLE_SECRET=###
# Twitter configuration:
#APP_TWITTER_CONSUMER_KEY=###
#APP_TWITTER_CONSUMER_SECRET=###
#APP_TWITTER_ACCESS_TOKEN=###
#APP_TWITTER_ACCESS_TOKEN_SECRET=###
# Pocket configuration:
#APP_POCKET_CONSUMER_KEY=###