summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/authentication
diff options
context:
space:
mode:
authorMartin <martin.frlin@gmail.com>2016-12-06 10:43:22 +0100
committerMartin <martin.frlin@gmail.com>2016-12-07 10:32:13 +0100
commit07e802fa7d6a63a69b31514923f85d6e76dd33e8 (patch)
treeec9ce4c07a5a824b90383a6090b26339ef2d63df /docs/tutorials/wiki2/src/authentication
parent8bc0f9a68c4f19533ccdf4486656f2a106a81827 (diff)
downloadpyramid-07e802fa7d6a63a69b31514923f85d6e76dd33e8.tar.gz
pyramid-07e802fa7d6a63a69b31514923f85d6e76dd33e8.tar.bz2
pyramid-07e802fa7d6a63a69b31514923f85d6e76dd33e8.zip
Changed 'host' and 'port' configuration to a new 'listen' style that is now supported by waitress server.
Diffstat (limited to 'docs/tutorials/wiki2/src/authentication')
-rw-r--r--docs/tutorials/wiki2/src/authentication/development.ini3
-rw-r--r--docs/tutorials/wiki2/src/authentication/production.ini3
2 files changed, 2 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/src/authentication/development.ini b/docs/tutorials/wiki2/src/authentication/development.ini
index 4a6c9325c..89ee6388b 100644
--- a/docs/tutorials/wiki2/src/authentication/development.ini
+++ b/docs/tutorials/wiki2/src/authentication/development.ini
@@ -29,8 +29,7 @@ auth.secret = seekrit
[server:main]
use = egg:waitress#main
-host = 127.0.0.1
-port = 6543
+list = 127.0.0.1:6543
###
# logging configuration
diff --git a/docs/tutorials/wiki2/src/authentication/production.ini b/docs/tutorials/wiki2/src/authentication/production.ini
index a13a0ca19..4a5023c67 100644
--- a/docs/tutorials/wiki2/src/authentication/production.ini
+++ b/docs/tutorials/wiki2/src/authentication/production.ini
@@ -18,8 +18,7 @@ auth.secret = real-seekrit
[server:main]
use = egg:waitress#main
-host = 0.0.0.0
-port = 6543
+list = 0.0.0.0:6543
###
# logging configuration