forked from BeWelcome/rox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rox_docker.ini
150 lines (128 loc) · 4.43 KB
/
rox_docker.ini
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[db]
; database dsn (see: http://www.php.net/manual/en/ref.pdo.php)
dsn = "mysql:host=db;dbname=bewelcome"
; username
user = bewelcome
; password
password = bewelcome
; dbupdate. Can be
; * "dbupdate = manual" - this means, you need phpmyadmin to do all the db manipulations yourself. or
; * "dbupdate = auto" (default) - then the "htdocs/bw/lib/dbupdate.php" will take care of the updates.
dbupdate = manual
; SMTP server config
[smtp]
; This section currently only effects mails sent by MOD_mail::sendEmail (i.e. signup, invitation).
; backend: "mail", "smtp" or "sendmail". "mail" means the PHP mail() function.
backend = smtp
host = mailer
port = 25
auth = false
username =
password =
debug = false
; mail addresses
[mailAddresses]
registration = [email protected]
noreply = [email protected]
[request]
prefix = ""
[env]
sitename = "BeWelcome"
cookie_prefix = bw_
session_name = sidTB
suspend_url = "http://www.bewelcome.org/tb/suspendinfo.html"
; number of days until "remember me" cookie expires
; set to 0 to disable "remember me" (checkbox will still be visible)
rememberme_expiry = 14
[google]
; Your Google Maps API Key (only valid per domain/directory)
maps_api_key = ""
; The URL to the geoname webservice (this default is probably ok for you)
geonames_webservice = "https://ws.geonames.org/search?q={query}&maxRows={rows}"
geonames_webservice_custom = "https://ws.geonames.org/{service}{query}&maxRows={rows}&style={style}&username=bewelcome2"
geonames_webservice_fallback = "https://ws.geonames.net/{service}{query}&maxRows={rows}&style={style}&username=lupochen&token=yDJWk4shMQdQ"
[map]
; OSM tiles provider URL
osm_tiles_provider_base_url = https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
; OSM tiles provider API key (currently not required by MapQuest)
osm_tiles_provider_api_key =
[activities]
; max number of activities displayed on the map
max_activities_on_map=1000
[phpflickr]
; Your Flickr API key (only valid per domain/directory)
api = ""
; the tempfolder - on windows computers this needs to be something like "c:\temp\" or on linux "/home/bwrox/tmp/
tmpfolder = "/tmp"
[messages]
; New members' sending limits
new_members_messages_per_hour = 10
new_members_messages_per_day = 50
[development]
; Developer's relief.
; skip_password_check: Set true to be able to log in as any user without entering a password
skip_password_check = false
; uncompress_css: Set true to work with uncompressed version of css
uncompress_css = true
[images]
max_width = 1024
max_height = 768
[javascript]
; Settings defined here will also be accessible in JS via the bwroxConfig
; object (e.g. bwroxConfig.debug). Note that all values will always turn up as
; a string in JS.
;
; debug: Set to 1 if you want to see debug output in the browser console, e.g.
; for map features
;debug = 1
; info: Similar to "debug", but for info output
;info = 1
; warn: Similar to "debug", but for warn output
;warn = 1
; error: Similar to "debug", but for error output
;error = 1
; log: Similar to "debug", but for log output
;log = 1
; compress_js: Set 1 to work with compressed version of js
compress_js = 1
; syshcvol settings (legacy). This will go to $_SYSHCVOL global var.
[syshcvol]
IniCache = "0"
NODBAUTOUPDATE = "0"
ARCH_DB = ""
CRYPT_DB = ""
ReloadRight = "False"
Crypted = ""
IMAGEDIR = "/srv/bewelcome/upload/images/"
EmailDomainName = "example.org"
MessageSenderMail = "[email protected]"
CommentNotificationSenderMail = "[email protected]"
NotificationMail = "[email protected]"
ferrorsSenderMail = "[email protected]"
SignupSenderMail = "[email protected]"
AccepterSenderMail = "[email protected]"
FeedbackSenderMail = "[email protected]"
TestMail = "[email protected]"
MailToNotifyWhenNewMemberSignup = "[email protected]"
QualityComments[] = Good
QualityComments[] = Neutral
QualityComments[] = Bad
SiteStatus = "Open"
SiteCloseMessage = "The site is temporary closed"
Accomodation[] = dependonrequest
Accomodation[] = neverask
Accomodation[] = anytime
CommentRelations[] = hewasmyguest
CommentRelations[] = hehostedme
CommentRelations[] = TravelledTogether
CommentRelations[] = OnlyOnce
CommentRelations[] = WeAreFriends
CommentRelations[] = HeHisMyOldCloseFriend
CommentRelations[] = HeIsMyFamily
CommentRelations[] = CommunicatedOnline
EvaluateEventMessageReceived = "Yes"
UploadPictMaxSize = "500000"
AgeMinForApplying = "18"
WhoIsOnlineActive = "Yes"
WhoIsOnlineDelayInMinutes = "10"
WhoIsOnlineLimit = "11"