diff --git a/cms_custom-ports.yml.template b/cms_custom-ports.yml.template index e24a559..216fe40 100644 --- a/cms_custom-ports.yml.template +++ b/cms_custom-ports.yml.template @@ -20,7 +20,7 @@ services: mem_limit: 256m env_file: config.env cms-web: - image: xibosignage/xibo-cms:release-3.1.0-alpha + image: xibosignage/xibo-cms:release-3.1.0-beta volumes: - "./shared/cms/custom:/var/www/cms/custom:Z" - "./shared/backup:/var/www/backup:Z" diff --git a/cms_remote-mysql.yml b/cms_remote-mysql.yml index 63a9b0f..2816392 100644 --- a/cms_remote-mysql.yml +++ b/cms_remote-mysql.yml @@ -9,7 +9,7 @@ services: env_file: config.env mem_limit: 256m cms-web: - image: xibosignage/xibo-cms:release-3.1.0-alpha + image: xibosignage/xibo-cms:release-3.1.0-beta volumes: - "./shared/cms/custom:/var/www/cms/custom:Z" - "./shared/backup:/var/www/backup:Z" diff --git a/config.env.template-remote-mysql b/config.env.template-remote-mysql index 4dd4cd3..a46c9fc 100644 --- a/config.env.template-remote-mysql +++ b/config.env.template-remote-mysql @@ -14,6 +14,17 @@ MYSQL_DATABASE=example MYSQL_USER=exampleuser MYSQL_PASSWORD=examplepassword +# If you wish to connect to MySQL over TLS/SSL connections, set MYSQL_ATTR_SSL_CA +# to the path on the web server where you have put the CA certificate that has +# signed your MySQL servers certificate. We recommend putting it in the +# shared/cms/custom directory, or you could use a custom volume mount for it +# at your option. +#MYSQL_ATTR_SSL_CA=/var/www/cms/custom/ca.pem +# If you wish to enforce TLS/SSL connections to your MySQL server, and in the +# process verify the hostname matches the certificate name, set +# MYSQL_ATTR_SSL_VERIFY_SERVER_CERT to true. +#MYSQL_ATTR_SSL_VERIFY_SERVER_CERT=true + ## SMTP Server Configuration ## The CMS needs to be able to send email to you ## Please enter credentials for a suitable SMTP server diff --git a/docker-compose.yml b/docker-compose.yml index dc1e107..2a3fed2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,7 @@ services: mem_limit: 256m env_file: config.env cms-web: - image: xibosignage/xibo-cms:release-3.1.0-alpha + image: xibosignage/xibo-cms:release-3.1.0-beta volumes: - "./shared/cms/custom:/var/www/cms/custom:Z" - "./shared/backup:/var/www/backup:Z"