Skip to content

Instantly share code, notes, and snippets.

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>,
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
}
}
@megamaced
megamaced / gist:70fb713e290d6d0aefd3ef80247e17d5
Created October 4, 2017 13:47
iRule to block any url not listed here
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
}
}