Skip to content

Commit 71029ea

Browse files
Deploy spring auth server with tls
1 parent 57feacc commit 71029ea

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export SPRING_URL=https://spring:8443/
1+
export SPRING_URL=https://spring:8443
22
export SPRING_CA_CERT=/config/oauth/spring/ca_spring_certificate.pem
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export SPRING_URL=https://localhost:8080/
1+
export SPRING_URL=https://localhost:8443
22
export OAUTH_PROVIDER_URL=${SPRING_URL}
33
export SPRING_CA_CERT=selenium/test/oauth/spring/ca_spring_certificate.pem
Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
server:
2+
port: 8443
23
ssl:
3-
enabled: true
4-
protocol: TLS
5-
enabled-protocols: TLSv1.2
6-
key-store-type: PKCS12
7-
key-store: /config/server_spring.jks
8-
key-store-password: foobar
9-
port: 8080
4+
bundle: spring-authorizationserver
5+
6+
spring:
7+
ssl:
8+
bundle:
9+
jks:
10+
spring-authorizationserver:
11+
key:
12+
alias: server-spring-tls
13+
password: foobar
14+
keystore:
15+
location: /config/server_spring.jks
16+
password: foobar
17+
type: PKCS12
18+

0 commit comments

Comments
 (0)