Skip to content

Commit 274d4fb

Browse files
authored
Merge pull request #4 from geertberkers/patch-merge-pull-request
Patch merge pull request
2 parents 26d35ff + c9c2d0a commit 274d4fb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

deployment/nginx-notes-config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
server {
2-
server_name notes.pl-coding.com; # replace with your domain
2+
server_name notes.gb-coding.nl; # replace with your domain
33

44
location / {
55
proxy_pass http://127.0.0.1:8085; # replace with your port

src/main/kotlin/com/plcoding/spring_boot_crash_course/controllers/AuthController.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,6 @@ class AuthController(
4848
): AuthService.TokenPair {
4949
return authService.refresh(body.refreshToken)
5050
}
51+
52+
// TODO: Add Delete route!
5153
}

src/main/resources/application.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ server.port=8085
33
spring.data.mongodb.uri=${MONGODB_CONNECTION_STRING}
44
spring.data.mongodb.auto-index-creation=true
55
jwt.secret=${JWT_SECRET_BASE64}
6+
#spring.security.user.password=test
67

78

89

910
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration
1011
spring.datasource.driver-class-name=org.postgresql.Driver
11-
spring.datasource.hikari.maximum-pool-size=12
12+
spring.datasource.hikari.maximum-pool-size=12
13+

0 commit comments

Comments
 (0)