-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added nginx ssl cyphers #25
Conversation
this partly fixes #24 |
gzip on; | ||
gzip_disable "msie6"; | ||
|
||
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should not advocate the use of TLSv1.0 https://www.lexiconn.com/blog/2015/12/pci-council-pushes-back-tls-1-0-end-of-life-date-to-june-2018/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
||
include /etc/nginx/mime.types; | ||
default_type application/octet-stream; | ||
|
||
include /etc/nginx/conf.d/*.conf; | ||
include /etc/nginx/sites-available/*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to manually create the symlinks between /etc/nginx/sites-available/*.conf
and /etc/nginx/sites-enabled/*.conf
should we do it in the Dockerfile instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@0x13A sites-enabled is not currently used in the nginx image. Take a look at the https://github.com/Osedea/nodock/blob/master/nginx/scripts/build-nginx.sh script for how the current configs are added to sites-available.
No description provided.