diff --git a/docs/docs/concepts/before-oauth2.mdx b/docs/docs/concepts/before-oauth2.mdx index 862df728fec..ea112cc9e6d 100644 --- a/docs/docs/concepts/before-oauth2.mdx +++ b/docs/docs/concepts/before-oauth2.mdx @@ -182,7 +182,7 @@ mobile app. And that's great, because the browser takes care of: - Bound to one top-level-domain only; - Anti-XSS with `httpOnly` -- TLS enforcment with `secure`; +- TLS enforcement with `secure`; - Smaller CSRF attack surface with the new `SameSite` directive; - The domain model (cookies are isolated per domain); diff --git a/docs/docs/contributing.md b/docs/docs/contributing.md index c8721d30fac..efefc50b295 100644 --- a/docs/docs/contributing.md +++ b/docs/docs/contributing.md @@ -88,7 +88,7 @@ a few things you can do to help out: - **Give us a star.** It may not seem like much, but it really makes a difference. This is something that everyone can do to help out Ory Hydra. - Github stars help the project gain visibility and stand out. + GitHub stars help the project gain visibility and stand out. - **Join the community.** Sometimes helping people can be as easy as listening to their problems and offering a different perspective. Join our Slack, have a @@ -150,13 +150,13 @@ request, go through this checklist: 1. Run `make format` if a `Makefile` is available, `gofmt -s` if the project is written in Go, `npm run format` if the project is written for NodeJS. 1. Ensure that each commit has a descriptive prefix. This ensures a uniform - commit history and helps structure the changelog. + commit history and helps structure the changelog. Please refer to this [list of prefixes for Hydra](https://github.com/ory/hydra/blob/master/.github/semantic.yml) for an overview. 1. Sign-up with CircleCI so that it has access to your repository with the branch containing your PR. Simply creating a CircleCI account is sufficient - for the CI jobs to run, you do not need to setup a CircleCI project for the + for the CI jobs to run, you do not need to set up a CircleCI project for the branch. If a pull request is not ready to be reviewed yet diff --git a/docs/docs/faq.md b/docs/docs/faq.md index f916db2063b..dd493ba9918 100644 --- a/docs/docs/faq.md +++ b/docs/docs/faq.md @@ -126,7 +126,7 @@ Since ORY Hydra 0.8.0, migrations are no longer run automatically on boot. This is required in production environments, because: 1. Although SQL migrations are tested, migrating schemas can cause data loss and - should only be done consciously with prior back ups. + should only be done consciously with prior back-ups. 2. Running a production system with a user that has right such as ALTER TABLE is a security anti-pattern. @@ -273,7 +273,7 @@ Check the logs using `docker logs `. ## Hydra won't remember my login Hydra only keeps track of the session if you set the `remember_me` parameter in -the `accept login request`. Otherwise the login challenge will always instruct +the `accept login request`. Otherwise, the login challenge will always instruct you to show the login UI. ## Where can I get documentation on running multiple instances of Hydra? @@ -299,7 +299,7 @@ also some information on collecting statistics in the section on Yes - you can configure that in your client. It has things like grant_types etc - there you can basically whitelist the flows you need. -## How can i test if my 4445 is running properly? +## How can I test if my 4445 is running properly? > I am using ory hydra for authentication. I get a 404 when im trying to create > a client on my private EC2 hydra task. Is there a way to test if my 4445 is diff --git a/docs/docs/sdk.md b/docs/docs/sdk.md index 079f1a36624..e62202e0f8f 100644 --- a/docs/docs/sdk.md +++ b/docs/docs/sdk.md @@ -28,7 +28,7 @@ repositories: - [Go](https://github.com/ory/hydra-client-go) - [Java](https://search.maven.org/artifact/sh.ory.hydra/hydra-client) - [JavaScript](https://www.npmjs.com/package/@ory/hydra-client) with TypeScript - definitions and compatible with: NodeJS, ReactJS, AnuglarJS, Vue.js, and many + definitions and compatible with: NodeJS, ReactJS, AngularJS, Vue.js, and many more. - [PHP](https://packagist.org/packages/ory/hydra-client) - [Python](https://pypi.org/project/ory-hydra-client/) diff --git a/docs/docs/security-architecture.md b/docs/docs/security-architecture.md index ff0e5b54f2c..f2b742bb613 100644 --- a/docs/docs/security-architecture.md +++ b/docs/docs/security-architecture.md @@ -77,7 +77,7 @@ at rest, this is might only impose a problem if ### RS256 -RSASSA-PKCS1-v1_5 using SHA-256 (RS256) is used to sign JWTs. It’s use is +RSASSA-PKCS1-v1_5 using SHA-256 (RS256) is used to sign JWTs. Its use is recommended by the JWA specification, see [https://www.rfc-editor.org/rfc/rfc7518.txt](https://www.rfc-editor.org/rfc/rfc7518.txt)