...
1# Netlify build instructions
2[build]
3 command = "make docs"
4 publish = "site"
5 environment = { PYTHON_VERSION = "3.8" }
6
7# Standard Netlify redirects
8[[redirects]]
9 from = "https://main--kubernetes-sigs-gateway-api.netlify.com/*"
10 to = "https://main.gateway-api.sigs.k8s.io/:splat"
11 status = 301
12 force = true
13
14# HTTP-to-HTTPS rules
15[[redirects]]
16 from = "http://main.gateway-api.sigs.k8s.io/*"
17 to = "https://main.gateway-api.sigs.k8s.io/:splat"
18 status = 301
19 force = true
20
21[[redirects]]
22 from = "http://main--kubernetes-sigs-gateway-api.netlify.com/*"
23 to = "http://main.gateway-api.sigs.k8s.io/:splat"
24 status = 301
25 force = true
View as plain text