Skip to content

Commit

Permalink
add permission to client.key
Browse files Browse the repository at this point in the history
  • Loading branch information
Parisa68 committed Dec 9, 2024
1 parent 390156c commit d987819
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
BROKER_HOST: localhost
BROKER_VALIDATE: false
DB_INSTANCE: localhost
ROOT_CERT_PATH: ./test/client_certs/ca.crt
CERT_PATH: ./test/client_certs/client.crt
CERT_KEY: ./test/client_certs/client.der
ROOT_CERT_PATH: /test/client_certs/ca.crt
CERT_PATH: /test/client_certs/client.crt
CERT_KEY: /test/client_certs/client.der
POSTGRES_PASSWORD: rootpasswd
OPENID_CONFIGURATION_URL: http://localhost:8000/openid-configuration
USERINFO_ENDPOINT_URL: http://localhost:8000/userinfo
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Transform Client Private Key to DER
run: |
chmod 644 ./test/client_certs/client.key
openssl pkcs8 -topk8 -inform PEM -outform DER -in ./test/client_certs/client.key -out ./test/client_certs/client.der -nocrypt
openssl pkcs8 -topk8 -inform PEM -outform DER -in /test/client_certs/client.key -out /test/client_certs/client.der -nocrypt
- name: Set up JDK
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-posix-outbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- certs:/certs
- client_certs:/client_certs
- /tmp:/temp
- ./test/client_certs:/client_certs
- /test/client_certs:/client_certs

postgres:
container_name: postgres
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-s3-outbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
- certs:/certs
- client_certs:/client_certs
- /tmp:/temp
- ./test/client_certs:/client_certs
- /test/client_certs:/client_certs

postgres:
container_name: postgres
Expand Down

0 comments on commit d987819

Please sign in to comment.