-
Notifications
You must be signed in to change notification settings - Fork 0
/
varnish.yml
54 lines (49 loc) · 902 Bytes
/
varnish.yml
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
---
# Sample BOSH manifest for deploying a Varnish HTTP cache server
name: varnish
releases:
- name: bpm
version: latest
- name: varnish
version: latest
stemcells:
- alias: default
os: ubuntu-jammy
version: latest
update:
canaries: 1
max_in_flight: 1
canary_watch_time: 1000-30000
update_watch_time: 1000-30000
serial: false
instance_groups:
- name: varnish
azs: [z1]
instances: 1
vm_type: default
stemcell: default
networks:
- name: default
jobs:
- name: varnish
release: varnish
properties:
vcl_configuration: |
vcl 4.1;
backend default {
.host = "www.example.org";
.port = "80";
}
parameters:
- name: default_ttl
value: 0
- name: nuke_limit
value: 1000
storage:
- type: malloc
options: 1G
addons:
- name: bpm
jobs:
- name: bpm
release: bpm