summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/acme_server_sign_with_root.caddyfiletest
blob: 9880f282150349533d5d877dba185ca411eebac3 (plain)
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
{
	pki {
		ca internal {
			name "Internal"
			root_cn "Internal Root Cert"
			intermediate_cn "Internal Intermediate Cert"
		}
    }
}

acme.example.com {
	acme_server {
		ca internal
		sign_with_root
	}
}
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":443"
					],
					"routes": [
						{
							"match": [
								{
									"host": [
										"acme.example.com"
									]
								}
							],
							"handle": [
								{
									"handler": "subroute",
									"routes": [
										{
											"handle": [
												{
													"ca": "internal",
													"handler": "acme_server",
													"sign_with_root": true
												}
											]
										}
									]
								}
							],
							"terminal": true
						}
					]
				}
			}
		},
		"pki": {
			"certificate_authorities": {
				"internal": {
					"name": "Internal",
					"root_common_name": "Internal Root Cert",
					"intermediate_common_name": "Internal Intermediate Cert"
				}
			}
		}
	}
}