diff options
| author | Michael Merickel <michael@merickel.org> | 2015-04-20 21:55:02 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2015-04-20 21:55:02 -0500 |
| commit | 43857c97c5c5cf437b31be013c6540ffc536d803 (patch) | |
| tree | f8f5663ca51ac47fb35732364b96990cd9cd42b4 | |
| parent | b47e90807ec9fcff7ab19faf0a17f68b2db07f21 (diff) | |
| download | pyramid-43857c97c5c5cf437b31be013c6540ffc536d803.tar.gz pyramid-43857c97c5c5cf437b31be013c6540ffc536d803.tar.bz2 pyramid-43857c97c5c5cf437b31be013c6540ffc536d803.zip | |
update development.ini in scaffolds to listen on 127.0.0.1
| -rw-r--r-- | pyramid/scaffolds/alchemy/development.ini_tmpl | 2 | ||||
| -rw-r--r-- | pyramid/scaffolds/starter/development.ini_tmpl | 2 | ||||
| -rw-r--r-- | pyramid/scaffolds/zodb/development.ini_tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/pyramid/scaffolds/alchemy/development.ini_tmpl b/pyramid/scaffolds/alchemy/development.ini_tmpl index 448803c8f..07811f7c3 100644 --- a/pyramid/scaffolds/alchemy/development.ini_tmpl +++ b/pyramid/scaffolds/alchemy/development.ini_tmpl @@ -27,7 +27,7 @@ sqlalchemy.url = sqlite:///%(here)s/{{project}}.sqlite [server:main] use = egg:waitress#main -host = 0.0.0.0 +host = 127.0.0.1 port = 6543 ### diff --git a/pyramid/scaffolds/starter/development.ini_tmpl b/pyramid/scaffolds/starter/development.ini_tmpl index c2a28e178..ae9460b11 100644 --- a/pyramid/scaffolds/starter/development.ini_tmpl +++ b/pyramid/scaffolds/starter/development.ini_tmpl @@ -24,7 +24,7 @@ pyramid.includes = [server:main] use = egg:waitress#main -host = 0.0.0.0 +host = 127.0.0.1 port = 6543 ### diff --git a/pyramid/scaffolds/zodb/development.ini_tmpl b/pyramid/scaffolds/zodb/development.ini_tmpl index 199ddfab4..a44b61686 100644 --- a/pyramid/scaffolds/zodb/development.ini_tmpl +++ b/pyramid/scaffolds/zodb/development.ini_tmpl @@ -29,7 +29,7 @@ zodbconn.uri = file://%(here)s/Data.fs?connection_cache_size=20000 [server:main] use = egg:waitress#main -host = 0.0.0.0 +host = 127.0.0.1 port = 6543 ### |
