-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathconfig.properties
More file actions
82 lines (82 loc) · 1.37 KB
/
config.properties
File metadata and controls
82 lines (82 loc) · 1.37 KB
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
# StackSync - SyncService configuration
#
# Type of database used as metadata backend.
# For the moment, only 'postgresql' is available.
datasource=postgresql
#
#
# PostgreSQL configuration
# ========================
#
# Host
postgresql.host=localhost
#
# Port
postgresql.port=5432
#
# Database
postgresql.database=stacksync
#
# User
postgresql.user=stacksync_user
#
# Password
postgresql.password=stacksync
#
#
#
# ObjectMQ configuration
# ======================
# ObjectMQ is the middleware that abstracts the communication between
# the SyncService and the clients. This configuration corresponds with
# the message broker service (AMQP compliant) in charge of handling this
# communication.
#
# Host
omq.host=10.30.233.214
#
# Port
omq.port=5672
#
# User
omq.username=guest
#
# Password
omq.pass=guest
#
# Number of threads
omq.num_threads=4
#
# Exchange queue.
# Must be the same as the one the clients send their requests.
omq.rpc_exchange=rpc_global_exchange
#
#
#
# OpenStack Swift configuration
# =============================
#
# Keystone host
swift.host=10.30.233.214
#
# Keystone host
swift.keystone_host=10.30.233.214
#
# Keystone port
swift.keystone_port=5000
#
# Keystone admin port
swift.keystone_admin_port=35357
#
# Keystone protocol
swift.keystone_protocol=http
#
# Tenant
swift.tenant=stacksync
#
# User
swift.user=stacksync_admin
#
# Password
swift.password=secrete
#