This repository was archived by the owner on May 25, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +26
-9
lines changed Expand file tree Collapse file tree 3 files changed +26
-9
lines changed Original file line number Diff line number Diff line change 1
1
ThisBuild / organization := " com.lightbend"
2
2
3
3
lazy val exampleScalaVersion = " 2.12.8"
4
- lazy val sbtreactiveappVersion = " 1.7.1 "
4
+ lazy val sbtreactiveappVersion = " 1.7.3 "
5
5
lazy val reactiveLibVersion = " 1.7.0"
6
6
lazy val reactiveCliVersion = " 1.7.1"
7
7
Original file line number Diff line number Diff line change @@ -77,14 +77,19 @@ lazy val root = (project in file("."))
77
77
Add the following to ` build.sbt ` to declare an endpoint:
78
78
79
79
``` scala
80
- rpEndpoints := HttpEndpoint (
81
- name = " http" ,
82
- ingress = new HttpIngress (
83
- ingressPorts = Vector (80 , 443 ),
84
- hosts = Vector .empty,
85
- paths = Vector (" /" )
86
- )
87
- ) :: Nil
80
+ rpHttpIngressPaths := Seq (" /" )
81
+ ```
82
+
83
+ ### conf/application.conf
84
+
85
+ Create ` conf/application.conf ` with the following content:
86
+
87
+ ```
88
+ play.filters.hosts {
89
+ allowed = ["."]
90
+ }
91
+ # https://www.playframework.com/documentation/latest/Configuration
92
+ play.http.secret.key="something"
88
93
```
89
94
90
95
#### Start Minikube
Original file line number Diff line number Diff line change @@ -14,6 +14,18 @@ sbt setting.
14
14
| [ reactive-lib] ( https://github.com/lightbend/reactive-lib/releases ) | $reactivelib$ |
15
15
@@@
16
16
17
+ ## sbt-reactive-app 1.7.3
18
+
19
+ - Fixes Play 2.7 endpoint detection [ sbt-reactive-app #184 ] [ sbt-reactive-app184 ]
20
+ - Fixes Lagom http port detection [ sbt-reactive-app #182 ] [ sbt-reactive-app182 ]
21
+ - Fixes rp-application.conf becoming blank when deploying Play without reactive-lib modules [ sbt-reactive-app #180 ] [ sbt-reactive-app180 ]
22
+ - Makes unused ` ingressPorts ` optional in ` HttpIngress ` [ sbt-reactive-app #181 ] [ sbt-reactive-app181 ]
23
+
24
+ [ sbt-reactive-app184 ] : https://github.com/lightbend/sbt-reactive-app/pull/184
25
+ [ sbt-reactive-app182 ] : https://github.com/lightbend/sbt-reactive-app/pull/182
26
+ [ sbt-reactive-app181 ] : https://github.com/lightbend/sbt-reactive-app/pull/181
27
+ [ sbt-reactive-app180 ] : https://github.com/lightbend/sbt-reactive-app/pull/180
28
+
17
29
## 1.7.1
18
30
19
31
### sbt-native-packager 1.3.18
You can’t perform that action at this time.
0 commit comments