summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/auto_https_disable_redirects.txt
blob: 61637bbac0fd06889349c808e6de39393cff33f4 (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 disable_redirects
}

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