diff --git a/config.docker.js b/config.docker.js index ca698e90..47b980e3 100644 --- a/config.docker.js +++ b/config.docker.js @@ -27,8 +27,8 @@ module.exports = { environment: NODE_ENV || "development", currentVersionURL: INAT_API_URL || "http://localhost:4000/v1", apiURL: INAT_RAILS_URL || "http://localhost:3000", - jwtSecret: INAT_JWT_SECRET || "secret", - jwtApplicationSecret: INAT_JWT_APPLICATION_SECRET || "application_secret", + jwtSecret: INAT_JWT_SECRET || "INAT_JWT_SECRET", + jwtApplicationSecret: INAT_JWT_APPLICATION_SECRET || "INAT_JWT_APPLICATION_SECRET", tileSize: 512, debug: NODE_DEBUG || false, database: { diff --git a/config_example.js b/config_example.js index c5f3b7f7..ced7e389 100644 --- a/config_example.js +++ b/config_example.js @@ -53,4 +53,4 @@ module.exports = { } // Simulate maintance by returning 503 for all requests // maintenanceUntil: "Sat, 23 Sep 2023 7:00:00 GMT" -}; \ No newline at end of file +};