This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage ./openssl_check_ciphers.sh host [/path/to/openssl/binary] | |
set -o errtrace | |
set -o nounset | |
set -o pipefail | |
if ! [ $1 ]; | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.gmaslowski.scala.samples.extractor | |
object ScalaExtractorSample extends App { | |
val casePeople = List( | |
Case.Person("John", "Doe"), | |
Case.Person("Jane", "Doe"), | |
Case.Person("Jimmy", "Doe"), | |
Case.Person("Bobby", "Doe"), | |
Case.Person("Jimmy", "Known"), | |
Case.Person("Clair", "Known") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: cassandra-rackdc | |
data: | |
cassandra-rackdc.properties: | | |
dc= datacenter | |
rack= RACK | |
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
debug = false | |
checkNewVersion = true | |
logLevel = "WARN" | |
defaultEntryPoints = ["https","http"] | |
[entryPoints] | |
[entryPoints.http] | |
address = ":80" | |
[entryPoints.http.redirect] | |
entryPoint = "https" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.5' | |
services: | |
traefik: | |
image: traefik:1.5.4-alpine | |
command: --web --docker --docker.swarmmode --docker.domain=<domain here> --logLevel=INFO --docker.watch --configfile=/traefik-v1.toml | |
ports: | |
- "80:80" | |
- "443:443" |