You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-08-06 22:23:10 +02:00
fix live555
This commit is contained in:
@ -2,10 +2,11 @@
|
|||||||
# Dockerfile for live555
|
# Dockerfile for live555
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM alpine
|
FROM centos:8
|
||||||
MAINTAINER kev <noreply@easypi.pro>
|
MAINTAINER EasyPi Software Foundation
|
||||||
|
|
||||||
RUN set -xe \
|
RUN set -xe \
|
||||||
|
&& yum install -y compat-openssl10 wget \
|
||||||
&& wget -qP /usr/local/bin/ http://www.live555.com/mediaServer/linux/live555MediaServer \
|
&& wget -qP /usr/local/bin/ http://www.live555.com/mediaServer/linux/live555MediaServer \
|
||||||
&& chmod +x /usr/local/bin/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;
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user