Skip to content

Commit

Permalink
Backend: Changed oauth service to ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasletsch committed Jan 26, 2016
1 parent 94695d1 commit b09d20c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
9 changes: 0 additions & 9 deletions backend/config-server/src/main/docker/Dockerfile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM java:8
ADD authentication-service-1.0.0-SNAPSHOT.jar app.jar
ADD selfsigned.cer /selfsigned.cer
VOLUME /tmp
VOLUME /target
RUN bash -c 'touch /app.jar'
EXPOSE 8899
ENTRYPOINT ["java","-Xmx128M","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@

---
spring:
profiles: local
logging:
Expand All @@ -11,3 +9,7 @@ logging:
server:
port: 8899
contextPath: /uaa
ssl:
key-store: classpath:keystore.jks
key-store-password: password
key-password: password
Binary file not shown.

0 comments on commit b09d20c

Please sign in to comment.