@stamhoofd/build-development-env 2.115.1 → 2.116.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,196 @@
1
+ {
2
+ "apps": {
3
+ "http": {
4
+ "servers": {
5
+ "stamhoofd": {
6
+ "listen": [
7
+ ":443",
8
+ ":80"
9
+ ],
10
+ "routes": [
11
+ {
12
+ "match": [
13
+ {
14
+ "host": [
15
+ "keeo.renderer.stamhoofd"
16
+ ]
17
+ }
18
+ ],
19
+ "handle": [
20
+ {
21
+ "handler": "reverse_proxy",
22
+ "upstreams": [
23
+ {
24
+ "dial": "127.0.0.1:9093"
25
+ }
26
+ ],
27
+ "headers": {
28
+ "request": {
29
+ "set": {
30
+ "x-real-ip": [
31
+ "{http.request.remote}"
32
+ ]
33
+ }
34
+ }
35
+ }
36
+ }
37
+ ]
38
+ },
39
+ {
40
+ "match": [
41
+ {
42
+ "host": [
43
+ "keeo.api.stamhoofd",
44
+ "*.keeo.api.stamhoofd"
45
+ ]
46
+ }
47
+ ],
48
+ "handle": [
49
+ {
50
+ "handler": "reverse_proxy",
51
+ "upstreams": [
52
+ {
53
+ "dial": "127.0.0.1:9091"
54
+ }
55
+ ],
56
+ "headers": {
57
+ "request": {
58
+ "set": {
59
+ "x-real-ip": [
60
+ "{http.request.remote}"
61
+ ]
62
+ }
63
+ }
64
+ }
65
+ },
66
+ {
67
+ "handler": "headers",
68
+ "response": {
69
+ "set": {
70
+ "Cache-Control": [
71
+ "no-store"
72
+ ]
73
+ }
74
+ }
75
+ }
76
+ ]
77
+ },
78
+ {
79
+ "match": [
80
+ {
81
+ "host": [
82
+ "keeo.dashboard.stamhoofd"
83
+ ]
84
+ }
85
+ ],
86
+ "handle": [
87
+ {
88
+ "handler": "reverse_proxy",
89
+ "load_balancing": {
90
+ "retries": 5
91
+ },
92
+ "upstreams": [
93
+ {
94
+ "dial": "127.0.0.1:8080"
95
+ }
96
+ ]
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "match": [
102
+ {
103
+ "host": [
104
+ "keeo.shop.stamhoofd"
105
+ ]
106
+ }
107
+ ],
108
+ "handle": [
109
+ {
110
+ "handler": "reverse_proxy",
111
+ "load_balancing": {
112
+ "retries": 5
113
+ },
114
+ "upstreams": [
115
+ {
116
+ "dial": "127.0.0.1:8082"
117
+ }
118
+ ]
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "match": [
124
+ {
125
+ "vars_regexp": {
126
+ "{http.request.host}": {
127
+ "pattern": "^inschrijven\\."
128
+ }
129
+ }
130
+ }
131
+ ],
132
+ "handle": [
133
+ {
134
+ "handler": "reverse_proxy",
135
+ "load_balancing": {
136
+ "retries": 5
137
+ },
138
+ "upstreams": [
139
+ {
140
+ "dial": "127.0.0.1:8081"
141
+ }
142
+ ]
143
+ }
144
+ ]
145
+ },
146
+ {
147
+ "handle": [
148
+ {
149
+ "handler": "reverse_proxy",
150
+ "load_balancing": {
151
+ "retries": 5
152
+ },
153
+ "upstreams": [
154
+ {
155
+ "dial": "127.0.0.1:8082"
156
+ }
157
+ ]
158
+ }
159
+ ]
160
+ }
161
+ ]
162
+ }
163
+ }
164
+ },
165
+ "tls": {
166
+ "automation": {
167
+ "policies": [
168
+ {
169
+ "subjects": [
170
+ "keeo.dashboard.stamhoofd",
171
+ "keeo.api.stamhoofd",
172
+ "*.keeo.api.stamhoofd",
173
+ "keeo.shop.stamhoofd",
174
+ "keeo.renderer.stamhoofd"
175
+ ],
176
+ "on_demand": false,
177
+ "issuers": [
178
+ {
179
+ "module": "internal"
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "on_demand": true,
185
+ "issuers": [
186
+ {
187
+ "module": "internal"
188
+ }
189
+ ]
190
+ }
191
+ ],
192
+ "on_demand": {}
193
+ }
194
+ }
195
+ }
196
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stamhoofd/build-development-env",
3
- "version": "2.115.1",
3
+ "version": "2.116.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./esm/dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -20,5 +20,5 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
- "gitHead": "4b692d62820d095e00524e3c0214e8f73a69506e"
23
+ "gitHead": "842040d2dcbde452fb25178f3586c8d5293b974f"
24
24
  }