Skip to content

Instantly share code, notes, and snippets.

@santisaez
santisaez / poodle.md
Last active August 29, 2015 14:07
#poodle recap

#poodle recap

Enable SSL debug on Apache and check if your clients are using SSLv3, you will get the protocol+cipher used for each HTTPS request:

CustomLog /tmp/apache_ssl.log "%v %a %{SSL_PROTOCOL}x %{SSL_CIPHER}x"

Tip: see mod_ssl documentation if you need other SSL environment variables.

If possible, disable SSLv3 on the web server:

@santisaez
santisaez / kubernetes-digitalocean.tf
Created March 6, 2019 21:06
Example Terraform code to deploy a Kubernetes cluster at DigitalOcean
// Create a Kubernetes cluster in DigitalOcean
resource "digitalocean_kubernetes_cluster" "prueba" {
name = "prueba"
region = "lon1"
version = "1.11.7-do.3"
node_pool {
name = "prueba-pool"
size = "s-1vcpu-2gb"
node_count = 1
@santisaez
santisaez / monzo-alertmanager-config.yaml
Created January 19, 2021 09:10 — forked from milesbxf/monzo-alertmanager-config.yaml
Monzo's Alertmanager Slack templates
###################################################
##
## Alertmanager YAML configuration for routing.
##
## Will route alerts with a code_owner label to the slack-code-owners receiver
## configured above, but will continue processing them to send to both a
## central Slack channel (slack-monitoring) and PagerDuty receivers
## (pd-warning and pd-critical)
##