diff --git a/live555/Dockerfile b/live555/Dockerfile index b6eaf99..35299c3 100644 --- a/live555/Dockerfile +++ b/live555/Dockerfile @@ -2,10 +2,11 @@ # Dockerfile for live555 # -FROM alpine -MAINTAINER kev +FROM centos:8 +MAINTAINER EasyPi Software Foundation RUN set -xe \ + && yum install -y compat-openssl10 wget \ && wget -qP /usr/local/bin/ http://www.live555.com/mediaServer/linux/live555MediaServer \ && chmod +x /usr/local/bin/live555MediaServer diff --git a/mosquitto/nginx.conf b/mosquitto/nginx.conf new file mode 100644 index 0000000..c09765b --- /dev/null +++ b/mosquitto/nginx.conf @@ -0,0 +1,11 @@ +stream { + server { + listen 8883 ssl; + ssl_certificate ssl/example.com.crt; + ssl_certificate_key ssl/example.com.key; + ssl_protocols TLSv1 TLSv1.1 TLSv1.2; + ssl_ciphers HIGH:!aNULL:!MD5; + proxy_pass 127.0.0.1:1883; + proxy_buffer_size 16k; + } +}