Skip to content

Commit

Permalink
docs(deployment): port should be number (#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
atian25 authored Sep 14, 2017
1 parent 53968f0 commit 95fbd47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/en/core/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Arguments of dispatch can be configured in `config.{env}.js`.
// config/config.default.js
exports.cluster = {
listen: {
port: '7001',
port: 7001,
hostname: '127.0.0.1',
// path: '/var/run/egg.sock',
}
Expand Down
2 changes: 1 addition & 1 deletion docs/source/zh-cn/core/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ $ egg-scripts start --port=7001 --daemon --title=egg-server-showcase
// config/config.default.js
exports.cluster = {
listen: {
port: '7001',
port: 7001,
hostname: '127.0.0.1',
// path: '/var/run/egg.sock',
}
Expand Down

0 comments on commit 95fbd47

Please sign in to comment.