25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

39 satır
893 B

  1. # This is the main configuration file for the application.
  2. # ~~~~~
  3. # Uncomment this for the most verbose Akka debugging:
  4. akka {
  5. loggers = ["akka.event.slf4j.Slf4jLogger"]
  6. loglevel = "INFO"
  7. logging-filter = "akka.event.slf4j.Slf4jLoggingFilter"
  8. #actor {
  9. # debug {
  10. # receive = on
  11. # autoreceive = on
  12. # lifecycle = on
  13. # }
  14. #}
  15. }
  16. # https://www.playframework.com/documentation/latest/SecurityHeaders
  17. # Allow URLs from the same origin to be loaded by frames and scripts
  18. play.filters.headers {
  19. frameOptions = "SAMEORIGIN"
  20. }
  21. play.filters.csp.directives {
  22. connect-src = "'self'"
  23. default-src = "'self'"
  24. }
  25. # https://www.playframework.com/documentation/latest/AllowedHostsFilter
  26. # Allow requests to localhost:9000.
  27. play.filters.hosts {
  28. allowed = ["localhost:9000"]
  29. }
  30. play.filters.enabled += "play.filters.csrf.CSRFFilter"
  31. default.stocks=["GOOG", "AAPL", "ORCL"]