Skip to content

Commit 23f4948

Browse files
committed
Bump version
1 parent 0ceb7d0 commit 23f4948

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.13.0
1+
2.13.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center">
22
<img src="https://nginxproxymanager.com/github.png">
33
<br><br>
4-
<img src="https://img.shields.io/badge/version-2.13.0-green.svg?style=for-the-badge">
4+
<img src="https://img.shields.io/badge/version-2.13.1-green.svg?style=for-the-badge">
55
<a href="https://hub.docker.com/repository/docker/jc21/nginx-proxy-manager">
66
<img src="https://img.shields.io/docker/stars/jc21/nginx-proxy-manager.svg?style=for-the-badge">
77
</a>

backend/lib/config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ const configure = () => {
3939

4040
const toBool = (v) => /^(1|true|yes|on)$/i.test((v || '').trim());
4141

42-
const envMysqlHost = process.env.DB_MYSQL_HOST || null;
43-
const envMysqlUser = process.env.DB_MYSQL_USER || null;
44-
const envMysqlName = process.env.DB_MYSQL_NAME || null;
45-
const envMysqlSSL = toBool(process.env.DB_MYSQL_SSL);
42+
const envMysqlHost = process.env.DB_MYSQL_HOST || null;
43+
const envMysqlUser = process.env.DB_MYSQL_USER || null;
44+
const envMysqlName = process.env.DB_MYSQL_NAME || null;
45+
const envMysqlSSL = toBool(process.env.DB_MYSQL_SSL);
4646
const envMysqlSSLRejectUnauthorized = process.env.DB_MYSQL_SSL_REJECT_UNAUTHORIZED === undefined ? true : toBool(process.env.DB_MYSQL_SSL_REJECT_UNAUTHORIZED);
4747
const envMysqlSSLVerifyIdentity = process.env.DB_MYSQL_SSL_VERIFY_IDENTITY === undefined ? true : toBool(process.env.DB_MYSQL_SSL_VERIFY_IDENTITY);
4848
if (envMysqlHost && envMysqlUser && envMysqlName) {

0 commit comments

Comments
 (0)