This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
when HTTP_REQUEST { | |
if {! switch -glob [string tolower [HTTP::host]] { | |
"hostname1.domain.com" - | |
"hostname2.domain.com" - | |
"hostname3.domain.com" | |
} | |
log local0. "[HTTP::host] not allowed" | |
drop | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
when HTTP_REQUEST { | |
switch -glob [string tolower [HTTP::host]] { | |
"hostname1.domain.com" - | |
"hostname2.domain.com" - | |
"hostname3.domain.com" - | |
default { | |
log local0. "[HTTP::host] not allowed" | |
drop | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2022-08-09 11:14:17,171 [Thread-43] WARN org.hibernate.orm.deprecation - HHH020100: The Ehcache second-level cache provider for Hibernate is deprecated. See https://hibernate.atlassian.net/browse/HHH-12441 for details. | |
2022-08-09 11:14:18,218 [Thread-43] WARN org.hibernate.orm.deprecation - HHH90000009: The outer-join attribute on <many-to-many> has been deprecated. Instead of outer-join="false", use lazy="extra" with <map>, <set>, <bag>, <idbag>, or <list>, which will only initialize entities (not as a proxy) as needed. | |
2022-08-09 11:14:18,233 [Thread-43] WARN org.hibernate.orm.deprecation - HHH90000005: Defining an entity [com.redhat.rhn.domain.channel.PublicChannelFamily] with no physical id attribute is no longer supported; please map the identifier to a physical entity attribute | |
2022-08-09 11:14:18,240 [Thread-43] WARN org.hibernate.orm.deprecation - HHH90000009: The outer-join attribute on <many-to-many> has been deprecated. Instead of outer-join="false", use lazy="extra" with <map>, <set>, <bag>, |