Skip to content

Instantly share code, notes, and snippets.

View althunibat's full-sized avatar
🎯
Focusing

Hamza Althunibat althunibat

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am althunibat on github.
  • I am althunibat (https://keybase.io/althunibat) on keybase.
  • I have a public key whose fingerprint is 394E D41F 81C3 D040 0379 F619 80FA F619 0060 6144

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am hdnebat on github.
  • I am althunibat (https://keybase.io/althunibat) on keybase.
  • I have a public key whose fingerprint is 394E D41F 81C3 D040 0379 F619 80FA F619 0060 6144

To claim this, I am signing this object:

apiVersion: v1
kind: Service
metadata:
name: minio
labels:
app: minio
spec:
clusterIP: None
ports:
- port: 9000
@althunibat
althunibat / haproxy.cfg
Last active September 11, 2018 16:02
#HAProxy config for #docker_registry (SSL, HTTP/2, statistics, Healthcheck, ssl redirection)
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
maxconn 5120
tune.ssl.default-dh-param 2048
#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Autofac" version="3.3.0" />
<package id="Automatonymous" version="1.2.5" />
<package id="Automatonymous.MassTransit" version="1.2.5"/>
<package id="Common.Logging" version="2.2.0" />
<package id="Common.Logging.Core" version="2.2.0"/>
<package id="Iesi.Collections" version="3.2.0.1001"/>
<package id="log4net" version="2.0.3"/>
<package id="Magnum" version="2.1.2"/>
using System;
namespace Contracts {
public interface AuditableMessage<T> where T : struct {
T CorrelationId { get; set; }
DateTime TimeStamp { get; set; }
string MessageSource { get; set; }
string SourceIdentity { get; set; }
}
}