summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/auto_https_ignore_loaded_certs.txt
blob: 1c6543851aee9653e805c99d214b2a798af0bc9c (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
{
	auto_https ignore_loaded_certs
}

localhost
----------
{
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":443"
					],
					"routes": [
						{
							"match": [
								{
									"host": [
										"localhost"
									]
								}
							],
							"terminal": true
						}
					],
					"automatic_https": {
						"ignore_loaded_certificates": true
					}
				}
			}
		}
	}
}