Merge branch 'develop' into pg-support

# Conflicts:
#	docker/dev/Dockerfile
This commit is contained in:
jeff
2024-10-18 16:13:20 -03:00
38 changed files with 584 additions and 155 deletions

View File

@ -199,5 +199,15 @@ module.exports = {
*/
useLetsencryptStaging: function () {
return !!process.env.LE_STAGING;
},
/**
* @returns {string|null}
*/
useLetsencryptServer: function () {
if (process.env.LE_SERVER) {
return process.env.LE_SERVER;
}
return null;
}
};