mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-06 16:26:50 +00:00
Compare commits
2 Commits
06b67ed4bc
...
f35671db21
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f35671db21 | ||
|
|
a3a0614948 |
@@ -25,6 +25,12 @@ const configure = () => {
|
|||||||
|
|
||||||
if (configData?.database) {
|
if (configData?.database) {
|
||||||
logger.info(`Using configuration from file: ${filename}`);
|
logger.info(`Using configuration from file: ${filename}`);
|
||||||
|
|
||||||
|
// Migrate those who have "mysql" engine to "mysql2"
|
||||||
|
if (configData.database.engine === "mysql") {
|
||||||
|
configData.database.engine = mysqlEngine;
|
||||||
|
}
|
||||||
|
|
||||||
instance = configData;
|
instance = configData;
|
||||||
instance.keys = getKeys();
|
instance.keys = getKeys();
|
||||||
return;
|
return;
|
||||||
|
|||||||
@@ -5,5 +5,14 @@ interface Props {
|
|||||||
certificate?: Certificate;
|
certificate?: Certificate;
|
||||||
}
|
}
|
||||||
export function CertificateFormatter({ certificate }: Props) {
|
export function CertificateFormatter({ certificate }: Props) {
|
||||||
return <T id={certificate ? "lets-encrypt" : "http-only"} />;
|
let translation = "http-only";
|
||||||
|
if (certificate) {
|
||||||
|
translation = certificate.provider;
|
||||||
|
if (translation === "letsencrypt") {
|
||||||
|
translation = "lets-encrypt";
|
||||||
|
} else if (translation === "other") {
|
||||||
|
translation = "certificates.custom";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return <T id={translation} />;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user