summaryrefslogtreecommitdiff
path: root/docs/quick_tour/sqla_demo
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/quick_tour/sqla_demo
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/quick_tour/sqla_demo')
-rw-r--r--docs/quick_tour/sqla_demo/development.ini3
-rw-r--r--docs/quick_tour/sqla_demo/production.ini3
2 files changed, 2 insertions, 4 deletions
diff --git a/docs/quick_tour/sqla_demo/development.ini b/docs/quick_tour/sqla_demo/development.ini
index 0db0950a0..a14402769 100644
--- a/docs/quick_tour/sqla_demo/development.ini
+++ b/docs/quick_tour/sqla_demo/development.ini
@@ -27,8 +27,7 @@ sqlalchemy.url = sqlite:///%(here)s/sqla_demo.sqlite
[server:main]
use = egg:waitress#main
-host = 127.0.0.1
-port = 6543
+listen = 127.0.0.1:6543
###
# logging configuration
diff --git a/docs/quick_tour/sqla_demo/production.ini b/docs/quick_tour/sqla_demo/production.ini
index 38f3b6318..e0bfd8ea0 100644
--- a/docs/quick_tour/sqla_demo/production.ini
+++ b/docs/quick_tour/sqla_demo/production.ini
@@ -18,8 +18,7 @@ sqlalchemy.url = sqlite:///%(here)s/sqla_demo.sqlite
[server:main]
use = egg:waitress#main
-host = 0.0.0.0
-port = 6543
+listen = 0.0.0.0:6543
###
# logging configuration