Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/src/main/groovy/noe/common/DefaultProperties.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class DefaultProperties {


// Added to allow for the new naming convention used in RHEL9
public static final String MOD_CLUSTER_CONFIG_FILE = Library.getUniversalProperty('mod.proxy.cluster.config.file', "mod_proxy_cluster.conf")
public static final String MOD_CLUSTER_CONFIG_FILE = (new Platform().isRHEL9() || apacheCoreVersion() >= new Version("2.4.51")) ? Library.getUniversalProperty('mod.proxy.cluster.config.file', "mod_proxy_cluster.conf") : Library.getUniversalProperty('mod.proxy.cluster.config.file', "mod_cluster.conf")
// Same as above but naming reflects the new changed file name
public static final String MOD_PROXY_CLUSTER_CONFIG_FILE = MOD_CLUSTER_CONFIG_FILE
// Making the conf directory configurable
Expand Down