Skip to content

Commit

Permalink
fix: add missing flags to config schema
Browse files Browse the repository at this point in the history
Closes #653
  • Loading branch information
aeneasr committed Mar 24, 2022
1 parent 422d422 commit 00100a1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
15 changes: 15 additions & 0 deletions spec/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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`."
}
}
}

0 comments on commit 00100a1

Please sign in to comment.