First commit

This commit is contained in:
2026-04-07 20:13:07 +00:00
commit 80d4101269
18 changed files with 387 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM nginx:alpine
# Installation de FFmpeg
RUN apk add --no-cache ffmpeg
# Configuration
COPY nginx.conf /etc/nginx/nginx.conf
COPY index.html /usr/share/nginx/html/index.html
COPY stream.sh /stream.sh
RUN chmod +x /stream.sh && mkdir -p /usr/share/nginx/html/hls
EXPOSE 80
CMD ["/stream.sh"]