Skip to content

Commit

Permalink
[fix] : 레디스 설정정보 암호화
Browse files Browse the repository at this point in the history
  • Loading branch information
evergreenn committed Feb 22, 2024
1 parent c198c2f commit bfd7e86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
spring.datasource.password: ${{ secrets.DB_PASSWORD }}
spring.datasource.driver-class-name: ${{ secrets.DB_DRIVER }}
spring.jwt.secret: ${{ secrets.JWT_SECRET }}
spring.data.redis.host: ${{secrets.REDIS_HOST}}
spring.data.redis.port: ${{secrets.REDIS_PORT}}


#gradlew 실행을 위한 권한 추가

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ spring:

data:
redis:
host: localhost
port: 6379
host: ${redis_host}
port: ${redis_port}

logging:
level:
Expand Down

0 comments on commit bfd7e86

Please sign in to comment.