mirror of https://github.com/scrapy/scrapy.git
WEBCONSOLE_PORT setting now defaults to 6080
This commit is contained in:
parent
fde4f219a8
commit
8ec7c9e01c
|
|
@ -871,8 +871,9 @@ TELNETCONSOLE_PORT
|
|||
|
||||
Default: ``6023``
|
||||
|
||||
The port to use for the telnet console. If ``None``, a dynamically assigned
|
||||
port is used.
|
||||
The port to use for the telnet console. If set to ``None`` or ``0``, a
|
||||
dynamically assigned port is used. For more info see
|
||||
:ref:`topics-telnetconsole`.
|
||||
|
||||
.. setting:: TEMPLATES_DIR
|
||||
|
||||
|
|
@ -930,7 +931,8 @@ the log is sent to standard scrapy log.
|
|||
WEBCONSOLE_PORT
|
||||
---------------
|
||||
|
||||
Default: ``None``
|
||||
Default: ``6080``
|
||||
|
||||
The port to use for the web console. If set to ``None`` or ``0``, a dynamically
|
||||
assigned port is used. For more info see :ref:`topics-webconsole`.
|
||||
|
||||
The port to use for the web console. If unset, a dynamically assigned port is
|
||||
used.
|
||||
|
|
|
|||
|
|
@ -200,7 +200,7 @@ TELNETCONSOLE_ENABLED = 1
|
|||
TELNETCONSOLE_PORT = 6023 # if None, uses a dynamic port
|
||||
|
||||
WEBCONSOLE_ENABLED = True
|
||||
WEBCONSOLE_PORT = None
|
||||
WEBCONSOLE_PORT = 6080
|
||||
WEBCONSOLE_LOGFILE = None
|
||||
|
||||
# this setting is used by the cluster master to pass additional settings to
|
||||
|
|
|
|||
Loading…
Reference in New Issue