-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHoifile
More file actions
60 lines (53 loc) · 1.41 KB
/
Hoifile
File metadata and controls
60 lines (53 loc) · 1.41 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
# Copyright 2013 David Persson. All rights reserved.
# Copyright 2016 Atelier Disko. All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
name = "__NAME__"
context = "dev"
app {
kind = "php"
version = "7.0.0"
}
domain "__DOMAIN__" {
www = "drop"
# Either paths or special string "!self-signed"
SSL = {
certificate = "!self-signed"
certificateKey = "!self-signed"
}
# auth {
# password = "__DOMAIN_AUTH_PASSWORD__"
# }
}
database "__NAME__" {
password = "__DB_PASSWORD__"
}
volume "media" {}
volume "media_versions" {}
volume "tmp" {
isTemporary = true
}
volume "log" {
isTemporary = true
}
# These crons Must be enabled when using SCHEDULED_JOBS.
# cron "high-freq" {
# schedule = "*:0/10"
# command = "bin/li3.php jobs runFrequency high"
# }
# cron "medium-freq" {
# schedule = "hourly"
# command = "bin/li3.php jobs runFrequency medium"
# }
# cron "low-freq" {
# schedule = "daily"
# command = "bin/li3.php jobs runFrequency low"
# }
# These workers must enabled when using ASYNC_PROCESSING.
# worker "media-fix" {
# command = "app/libraries/bin/cute-worker --queue=fix --scope={{.P.Name}}_{{.P.Context}} -r app/libraries/base_core/config/bootstrap.php"
# }
# worker "media-fixflux" {
# command = "app/libraries/bin/cute-worker --queue=fix,flux --scope={{.P.Name}}_{{.P.Context}} -r app/libraries/base_core/config/bootstrap.php"
# }