Update README.md

This commit is contained in:
jackycute 2015-09-25 10:39:09 +08:00
parent 6e40df2887
commit 0d8a112942
1 changed files with 5 additions and 5 deletions

View File

@ -62,8 +62,8 @@ Environment variables
| variables | example values | description | | variables | example values | description |
| --------- | ------ | ----------- | | --------- | ------ | ----------- |
| NODE_ENV | `production` or `development` | show current environment status | | NODE_ENV | `production` or `development` | show current environment status |
| DATABASE_URL | `postgresql://localhost:5432/hackmd` | PostgreSQL connection string | | DATABASE_URL | `postgresql://user:pass@host:port/hackmd` | PostgreSQL connection string |
| MONGOLAB_URI | `mongodb://localhost/hackmd` | MongoDB connection string | | MONGOLAB_URI | `mongodb://user:pass@host:port/hackmd` | MongoDB connection string |
| PORT | `80` | web port | | PORT | `80` | web port |
| SSLPORT | `443` | ssl web port | | SSLPORT | `443` | ssl web port |
| DOMAIN | `localhost` | domain name | | DOMAIN | `localhost` | domain name |
@ -84,8 +84,8 @@ Server-side config.js settings
| sslcertpath | `./cert/hackmd_io.crt` | ssl cert path | | sslcertpath | `./cert/hackmd_io.crt` | ssl cert path |
| sslcapath | `['./cert/COMODORSAAddTrustCA.crt']` | ssl ca chain | | sslcapath | `['./cert/COMODORSAAddTrustCA.crt']` | ssl ca chain |
| tmppath | `./tmp/` | temp file path | | tmppath | `./tmp/` | temp file path |
| postgresqlstring | `postgresql://localhost:5432/hackmd` | PostgreSQL connection string, fallback to this when not set in environment | | postgresqlstring | `postgresql://user:pass@host:port/hackmd` | PostgreSQL connection string, fallback to this when not set in environment |
| mongodbstring | `mongodb://localhost/hackmd` | MongoDB connection string, fallback to this when not set in environment | | mongodbstring | `mongodb://user:pass@host:port/hackmd` | MongoDB connection string, fallback to this when not set in environment |
| sessionname | `connect.sid` | cookie session name | | sessionname | `connect.sid` | cookie session name |
| sessionsecret | `secret` | cookie session secret | | sessionsecret | `secret` | cookie session secret |
| sessionlife | `14 * 24 * 60 * 60 * 1000` | cookie session life | | sessionlife | `14 * 24 * 60 * 60 * 1000` | cookie session life |
@ -102,4 +102,4 @@ Which make concurrent editing safe and not break up other users' operations.
Even more, now can show other clients' selections. Even more, now can show other clients' selections.
See more at http://operational-transformation.github.io/ See more at http://operational-transformation.github.io/
**License under MIT.** **License under MIT.**