Aleph Melo
2017-04-16 12fe4f6704e50f588dec9122a1ea992433ba0feb
Fix #2927 - Change to listen = localhost:6543.

(cherry picked from commit 6d120e5)
24 files modified
48 ■■■■ changed files
docs/narr/myproject/development.ini 2 ●●● patch | view | raw | blame | history
docs/narr/startup.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tour.rst 2 ●●● patch | view | raw | blame | history
docs/quick_tour/logging/development.ini 2 ●●● patch | view | raw | blame | history
docs/quick_tour/package/development.ini 2 ●●● patch | view | raw | blame | history
docs/quick_tour/sessions/development.ini 2 ●●● patch | view | raw | blame | history
docs/quick_tour/sqla_demo/development.ini 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/cookiecutters/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki/src/authorization/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki/src/basiclayout/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki/src/installation/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki/src/models/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki/src/tests/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki/src/views/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/authentication/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/authorization/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/basiclayout/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/installation/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/models/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/tests/development.ini 2 ●●● patch | view | raw | blame | history
docs/tutorials/wiki2/src/views/development.ini 2 ●●● patch | view | raw | blame | history
pyramid/scaffolds/alchemy/development.ini_tmpl 2 ●●● patch | view | raw | blame | history
pyramid/scaffolds/starter/development.ini_tmpl 2 ●●● patch | view | raw | blame | history
pyramid/scaffolds/zodb/development.ini_tmpl 2 ●●● patch | view | raw | blame | history
docs/narr/myproject/development.ini
@@ -24,7 +24,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/narr/startup.rst
@@ -132,7 +132,7 @@
#. ``pserve`` starts the WSGI *server* defined within the ``[server:main]``
   section.  In our case, this is the Waitress server (``use =
   egg:waitress#main``), and it will listen on all interfaces on port 6543
   for both IPv4 and IPv6 (``listen = 127.0.0.1:6543 [::1]:6543``). The server
   for both IPv4 and IPv6 (``listen = localhost:6543``). The server
   code itself is what prints ``serving on http://127.0.0.1:6543``. The server
   serves the application, and the application is running, waiting to receive requests.
docs/quick_tour.rst
@@ -618,7 +618,7 @@
#. *Choice of web server:* ``use = egg:waitress#main`` tells ``pserve`` to
   use the ``waitress`` server.
#. *Interfaces:* ``listen = 127.0.0.1:6543 [::1]:6543`` tells ``waitress`` to listen on all interfaces on port 6543 for both IPv4 and IPv6.
#. *Interfaces:* ``listen = localhost:6543`` tells ``waitress`` to listen on all interfaces on port 6543 for both IPv4 and IPv6.
Additionally the ``development.ini`` generated by this cookiecutter wired up
Python's standard logging. We'll now see in the console, for example, a log on
docs/quick_tour/logging/development.ini
@@ -24,7 +24,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/quick_tour/package/development.ini
@@ -24,7 +24,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/quick_tour/sessions/development.ini
@@ -24,7 +24,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/quick_tour/sqla_demo/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/quick_tutorial/cookiecutters/development.ini
@@ -24,7 +24,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki/src/authorization/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki/src/basiclayout/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki/src/installation/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki/src/models/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki/src/tests/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki/src/views/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/authentication/development.ini
@@ -28,7 +28,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/authorization/development.ini
@@ -28,7 +28,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/basiclayout/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/installation/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/models/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/tests/development.ini
@@ -28,7 +28,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
docs/tutorials/wiki2/src/views/development.ini
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
pyramid/scaffolds/alchemy/development.ini_tmpl
@@ -26,7 +26,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
pyramid/scaffolds/starter/development.ini_tmpl
@@ -24,7 +24,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration
pyramid/scaffolds/zodb/development.ini_tmpl
@@ -29,7 +29,7 @@
[server:main]
use = egg:waitress#main
listen = 127.0.0.1:6543 [::1]:6543
listen = localhost:6543
###
# logging configuration