Skip to content

Commit f384767

Browse files
authored
docs: Server options link in README linked to incorrect branch (#9212)
1 parent fc96ee0 commit f384767

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ app.listen(1337, function() {
306306
});
307307
```
308308

309-
For a full list of available options, run `parse-server --help` or take a look at [Parse Server Configurations](http://parseplatform.org/parse-server/api/master/ParseServerOptions.html).
309+
For a full list of available options, run `parse-server --help` or take a look at [Parse Server Configurations][server-options].
310310

311311
## Parse Server Health
312312

@@ -333,7 +333,7 @@ The response looks like this:
333333

334334
Parse Server can be configured using the following options. You may pass these as parameters when running a standalone `parse-server`, or by loading a configuration file in JSON format using `parse-server path/to/configuration.json`. If you're using Parse Server on Express, you may also pass these to the `ParseServer` object as options.
335335

336-
For the full list of available options, run `parse-server --help` or take a look at [Parse Server Configurations](http://parseplatform.org/parse-server/api/master/ParseServerOptions.html).
336+
For the full list of available options, run `parse-server --help` or take a look at [Parse Server Configurations][server-options].
337337

338338
## Basic Options
339339

@@ -367,7 +367,7 @@ The client keys used with Parse are no longer necessary with Parse Server. If yo
367367

368368
## Email Verification and Password Reset
369369

370-
Verifying user email addresses and enabling password reset via email requires an email adapter. There are many email adapters provided and maintained by the community. The following is an example configuration with an example email adapter. See the [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) for more details and a full list of available options.
370+
Verifying user email addresses and enabling password reset via email requires an email adapter. There are many email adapters provided and maintained by the community. The following is an example configuration with an example email adapter. See the [Parse Server Options][server-options] for more details and a full list of available options.
371371

372372
```js
373373
const server = ParseServer({
@@ -407,7 +407,7 @@ Email adapters contributed by the community:
407407

408408
## Password and Account Policy
409409

410-
Set a password and account policy that meets your security requirements. The following is an example configuration. See the [Parse Server Options](https://parseplatform.org/parse-server/api/master/ParseServerOptions.html) for more details and a full list of available options.
410+
Set a password and account policy that meets your security requirements. The following is an example configuration. See the [Parse Server Options][server-options] for more details and a full list of available options.
411411

412412
```js
413413
const server = ParseServer({
@@ -1207,3 +1207,4 @@ Support us with a monthly donation and help us continue our activities. [Become
12071207
[log_release]: https://github.com/parse-community/parse-server/blob/release/changelogs/CHANGELOG_release.md
12081208
[log_beta]: https://github.com/parse-community/parse-server/blob/beta/changelogs/CHANGELOG_beta.md
12091209
[log_alpha]: https://github.com/parse-community/parse-server/blob/alpha/changelogs/CHANGELOG_alpha.md
1210+
[server-options] http://parseplatform.org/parse-server/api/release/ParseServerOptions.html

0 commit comments

Comments
 (0)