Skip to content

Commit

Permalink
Merge pull request #26 from cyberark/update-ciphers
Browse files Browse the repository at this point in the history
Upgraded server ciphers to only allow TLSv1.2
  • Loading branch information
Dustin Byrne authored Feb 1, 2019
2 parents 62bf7a9 + f143649 commit e8bccb4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.3.7](https://github.com/cyberark/conjur-oss-helm-chart/releases/tag/v1.3.7) - 2019-01-31
### Changed
- Server ciphers have been upgraded to TLS1.2 levels.

## [1.3.6](https://github.com/cyberark/conjur-oss-helm-chart/releases/tag/v1.3.6) - 2019-01-22
### Changed
- Changed the default Postgres resource from Pod to Deployment to fix GKE marketplace app
Expand Down
2 changes: 1 addition & 1 deletion conjur-oss/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: conjur-oss
home: https://www.conjur.org
version: 1.3.6
version: 1.3.7
description: A Helm chart for CyberArk Conjur
icon: https://xebialabs-clients-iglusjax.stackpathdns.com/assets/files/logos/CyberArkConjurLogoWhiteBlue.png
keywords:
Expand Down
5 changes: 0 additions & 5 deletions conjur-oss/files/conjur.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ server {

ssl_verify_client optional_no_ca;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

ssl_dhparam /etc/nginx/dhparams.pem;
ssl_session_cache shared:SSL:10m;

listen 9443 ssl;
listen [::]:9443 ssl;

Expand Down
13 changes: 13 additions & 0 deletions conjur-oss/files/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ http {
client_max_body_size 10M;
proxy_read_timeout 600s;

# Prevent DoS attacks
reset_timedout_connection on;

# Speed up SSL connections
ssl_session_timeout 10m;
ssl_session_cache shared:SSL:10m;

# Custom security-minded SSL settings
ssl_dhparam /etc/nginx/dhparams.pem;
ssl_protocols TLSv1.3 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers 'ALL:!RSA:!SHA:!aNULL:!eNULL:!EXPORT:!MEDIUM:!LOW:!CAMELLIA:!3DES:!DES:!MD5:!PSK:!RC4:!DSS:!SRP:!DSS:!SEED:!SSLv3:!SSLv2:!IDEA:!aGOST';

log_format syslog '$http_host '
'$remote_addr '
'"$request" $status $body_bytes_sent '
Expand Down

0 comments on commit e8bccb4

Please sign in to comment.