Skip to content

Commit

Permalink
[AN-119] Restructure akka conf like Cromwell (#353)
Browse files Browse the repository at this point in the history
* restructure akka conf like Cromwell

* Update src/main/resources/reference.conf

Co-authored-by: Adam Nichols <aednichols@gmail.com>

---------

Co-authored-by: Adam Nichols <aednichols@gmail.com>
  • Loading branch information
LizBaldo and aednichols authored Feb 20, 2025
1 parent efaf693 commit efb0d48
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,20 @@ oidc {

akka {
loggers = ["akka.event.slf4j.Slf4jLogger"]
}

akka.http.server.idle-timeout = 95 s # Akka default is 60 s
akka.http.server.request-timeout = 65 s # Akka default is 20 s
# By default, akka includes an HTTP header in responses that looks like:
# server=akka-http/10.20.1
# For better app sec, we suppress this to make it harder for attackers to learn about our system.
# Akka doc: https://doc.akka.io/docs/akka-http/current/configuration.html
akka.http.server.server-header = ""
http {
server {
idle-timeout = 95 s # Akka default is 60 s
request-timeout = 65 s # Akka default is 20 s

# By default, akka includes an HTTP header in responses that looks like:
# server=akka-http/10.20.1
# For better app sec, we suppress this to make it harder for attackers to learn about our system.
# Akka doc: https://doc.akka.io/docs/akka-http/current/configuration.html
server-header = ""
}
}
}

dispatchers {
# A dispatcher for futures/actors performing blocking io operations
Expand Down

0 comments on commit efb0d48

Please sign in to comment.