diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f2ab5ae8af3..c5d3416fbae 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -66,7 +66,6 @@ jobs: TEST_DATABASE_POSTGRESQL: "postgres://test:test@localhost:5432/postgres?sslmode=disable" TEST_DATABASE_MYSQL: "mysql://root:test@(localhost:3306)/mysql?multiStatements=true&parseTime=true" TEST_DATABASE_COCKROACHDB: "cockroach://root@localhost:26257/defaultdb?sslmode=disable" - SKIP_HYDRA_BUILD: 1 steps: - run: | docker create --name cockroach -p 26257:26257 \ diff --git a/spec/config.json b/spec/config.json index 3915f1d70a4..0e8b7baa1b5 100644 --- a/spec/config.json +++ b/spec/config.json @@ -1206,6 +1206,21 @@ } } } + }, + "dangerous-force-http": { + "type": "boolean", + "title": "Disables HTTP/2 over TLS (HTTPS) and serves HTTP instead", + "description": "DO NOT USE THIS IN PRODUCTION - Disables HTTP/2 over TLS (HTTPS) and serves HTTP instead. This is only available as CLI flag `--dangerous-force-http`." + }, + "dangerous-allow-insecure-redirect-urls": { + "type": "array", + "items": [ + { + "type": "string" + } + ], + "title": "Disable HTTPS enforcement for the provided redirect URLs.", + "description": "DO NOT USE THIS IN PRODUCTION - Disable HTTPS enforcement for the provided redirect URLs. This is only available as CLI flag `--dangerous-allow-insecure-redirect-urls`." } } }