Skip to content

Commit

Permalink
Minor typo fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Tommy <[email protected]>
  • Loading branch information
TommyTran732 committed Dec 27, 2022
1 parent 866e40c commit f6abb71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/posts/linux/Slightly Improving Mailcow Security.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ smtpd_tls_mandatory_ciphers = high

These security configurations can be added/modified in `data/conf/nginx/includes/site-defaults.conf`.

## SSL Ciphers
### SSL Ciphers

Consider only supporting ciphers matching that of TLSv1.3:

```
ssl_ciphers "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256";
```

## HSTS
### HSTS

Consider adding `includeSubDomains;`to the HSTS configuration if all of your services are using HTTPS:
Consider adding `includeSubDomains;` and `preload;` to the HSTS configuration if all of your services are using HTTPS:

```
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload";
Expand Down

0 comments on commit f6abb71

Please sign in to comment.