Wednesday, 13 September 2023

CERIA TV

Jambi tv

Tuesday, 12 September 2023

RTMP HLS SSL NGINX CENTOS

 Berikut Conf nginx Centos 8

nginx.conf

# TRIMAN SEPTEMBER 2023 @M3U8,RTMP,SSL,HTML #
user nginx; 
worker_processes  auto;
error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

Thursday, 27 July 2023

HTTPS To HTTP .htaccess

     <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteCond %{HTTPS} on
        RewriteRule .* http://%{HTTP_HOST}%{REQUEST_URI}
    </IfModule>