Akka http server side host-connection-pool configuration

akka {
http {
host-connection-pool {
max-connections = 1024
max-open-requests = 2048
idle-timeout = 600 s
}
}

Does akka http server side use host-connection-pool configuration for anything?

No, the pool is client side, so that config section should only be used by the HTTP client.