Skip to content

Instantly share code, notes, and snippets.

@stefano-pogliani
stefano-pogliani / Cargo.toml
Created July 19, 2019 18:23
HTTPS Mutual Authentication Experiments
[package]
name = "actix-web-test-https"
version = "0.1.0"
authors = ["Stefano Pogliani <stefano@spogliani.net>"]
edition = "2018"
[[bin]]
name = "actix-web-test-https"
path = "main.rs"
@stefano-pogliani
stefano-pogliani / Dockerfile
Created September 13, 2017 14:23
Locking docker containers with slow fluentd/network
FROM debian:jessie
RUN apt-get update \
&& apt-get install -y python-pip \
&& pip install --upgrade pip flask
COPY ./server.py /server.py
EXPOSE 5000
ENV FLASK_APP=server.py