mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
fix portal configuration for local run (#358)
This commit is contained in:
parent
3c2bba108b
commit
9d58713f92
@ -332,7 +332,6 @@ lazy val portal = (project in file("modules/portal")).enablePlugins(PlayScala, A
|
||||
routesGenerator := InjectedRoutesGenerator,
|
||||
coverageExcludedPackages := "<empty>;views.html.*;router.*",
|
||||
javaOptions in Test += "-Dconfig.file=conf/application-test.conf",
|
||||
javaOptions in run += "-Dhttp.port=9001 -Dconfig.file=modules/portal/conf/application.conf",
|
||||
|
||||
// adds an extra classpath to the portal loading so we can externalize jars, make sure to create the lib_extra
|
||||
// directory and lay down any dependencies that are required when deploying
|
||||
|
9
modules/portal/conf/application.conf
Normal file
9
modules/portal/conf/application.conf
Normal file
@ -0,0 +1,9 @@
|
||||
http.port = 9001
|
||||
|
||||
crypto {
|
||||
type = "vinyldns.core.crypto.JavaCrypto"
|
||||
secret = "8B06A7F3BC8A2497736F1916A123AA40E88217BE9264D8872597EF7A6E5DCE61"
|
||||
}
|
||||
|
||||
// Local.conf has files specific to your environment, for example your own LDAP settings
|
||||
include "local.conf"
|
@ -139,7 +139,7 @@ crypto {
|
||||
secret = ${?CRYPTO_SECRET}
|
||||
}
|
||||
|
||||
http.port = 9001
|
||||
http.port = 9000
|
||||
http.port = ${?PORTAL_PORT}
|
||||
|
||||
links = [
|
||||
|
Loading…
x
Reference in New Issue
Block a user