mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
fix: align entry point names in configs
This commit is contained in:
parent
082aff58a9
commit
d50a6ce76f
@ -78,7 +78,7 @@ test("Should not touch config without host", () => {
|
||||
expect(originalConfig).toEqual(config);
|
||||
});
|
||||
|
||||
test("Should remove web-secure if https rollback to http", () => {
|
||||
test("Should remove websecure if https rollback to http", () => {
|
||||
const originalConfig: FileConfig = loadOrCreateConfig("dokploy");
|
||||
|
||||
updateServerTraefik(
|
||||
|
@ -25,7 +25,7 @@ export const updateServerTraefik = (
|
||||
if (admin?.certificateType === "letsencrypt") {
|
||||
config.http.routers[`${appName}-router-app-secure`] = {
|
||||
...currentRouterConfig,
|
||||
entryPoints: ["web-secure"],
|
||||
entryPoints: ["websecure"],
|
||||
tls: { certResolver: "letsencrypt" },
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user