Tying WordPress to all of Apache's listen ports by default is not desirable as you may want other apps on other ports. In addition, Apache's default listen ports are 80 and 443 and the current behavior of this cookbook attempts to create a VirtualHost directive like this:
<VirtualHost *:80 443 >
which is not valid syntax and causes an error.
This patch still allows wrapper cookbooks to specify listen ports for WordPress, but also adds a sane default of port 80.
Tying WordPress to all of Apache's listen ports by default is not desirable as you may want other apps on other ports. In addition, Apache's default listen ports are 80 and 443 and the current behavior of this cookbook attempts to create a VirtualHost directive like this:
which is not valid syntax and causes an error.
This patch still allows wrapper cookbooks to specify listen ports for WordPress, but also adds a sane default of port
80
.