fix live555

This commit is contained in:
kev 2021-04-26 15:18:29 +08:00
parent 704843f84d
commit 188254372f
2 changed files with 14 additions and 2 deletions

View File

@ -2,10 +2,11 @@
# Dockerfile for live555
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
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

11
mosquitto/nginx.conf Normal file
View File

@ -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;
}
}