mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-21 18:06:36 +02:00
fix live555
This commit is contained in:
parent
704843f84d
commit
188254372f
@ -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
11
mosquitto/nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user