Skip to content

Commit c350799

Browse files
committed
Port configuration adjustment.
Changelog excerpt: - Adjusted minimum value for some port directives from 1 to 0.
1 parent 34634f1 commit c350799

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -95,3 +95,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
9595
[2022.10.28; Maikuolan]: Reworked how the configuration page deals with volume-based configuration.
9696

9797
[2022.11.20; Maikuolan]: Avoid packaging unnecessary files into dist.
98+
99+
### v3.3.4
100+
101+
[2022.11.30; Maikuolan]: Adjusted minimum value for some port directives from 1 to 0.

assets/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Configuration defaults file (last modified: 2022.10.28).
10+
# This file: Configuration defaults file (last modified: 2022.11.30).
1111
##/
1212

1313
core:
@@ -413,15 +413,15 @@ supplementary_cache_options:
413413
memcached_port:
414414
type: "int"
415415
default: 11211
416-
min: 1
416+
min: 0
417417
max: 65535
418418
redis_host:
419419
type: "string"
420420
default: "localhost"
421421
redis_port:
422422
type: "int"
423423
default: 6379
424-
min: 1
424+
min: 0
425425
max: 65535
426426
redis_timeout:
427427
type: "float"

0 commit comments

Comments
 (0)