Fixes #4499 -- Force beanstalkd to listen to local ports on Ansible.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-11-19 15:28:22 -06:00
parent f24c695afe
commit ae090f96eb
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
3 changed files with 4 additions and 2 deletions

View File

@ -34,7 +34,7 @@ else
fi
APP_ENV="${APP_ENV:-production}"
UPDATE_REVISION="${UPDATE_REVISION:-66}"
UPDATE_REVISION="${UPDATE_REVISION:-67}"
echo "Updating AzuraCast (Environment: $APP_ENV, Update revision: $UPDATE_REVISION)"

View File

@ -1 +1,3 @@
BEANSTALKD_LISTEN_ADDR="127.0.0.1"
BEANSTALKD_LISTEN_PORT=11300
BEANSTALKD_EXTRA="-z 262140"

View File

@ -21,7 +21,7 @@
- { role : mariadb, when : update_revision|int < 63 }
- { role : nginx, when : update_revision|int < 60 }
- { role : redis, when : update_revision|int < 57 }
- { role : beanstalkd, when : update_revision|int < 65 }
- { role: beanstalkd, when: update_revision|int < 67 }
- { role : php, when : update_revision|int < 62 }
- composer
- { role : influxdb, when : update_revision|int < 58 }