This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x82D89BB37fc0e37f722Df9ADFD32399621c28aA6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="bipbop_audio",LANGUAGE="zh",NAME="BipBop Audio 1",AUTOSELECT=YES,DEFAULT=YES | |
#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="bipbop_audio",LANGUAGE="en",NAME="BipBop Audio 2",AUTOSELECT=NO,DEFAULT=NO,URI="https://ca01.vieplay.vn/vieplay-vod/3-audio-ep02/hls/audio/zh/mp4a/128/profile.m3u8" | |
#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="bipbop_audio",LANGUAGE="vi",NAME="BipBop Audio 4",AUTOSELECT=NO,DEFAULT=NO,URI="https://ca01.vieplay.vn/vieplay-vod/3-audio-ep02/hls/audio/vi/mp4a/128/profile.m3u8" | |
#EXT-X-STREAM-INF:BANDWIDTH=263851,CODECS="mp4a.40.2, avc1.4D401F",RESOLUTION=416x234,AUDIO="bipbop_audio",SUBTITLES="subs" | |
https://ca01.vieplay.vn/vielive/giong-ca-bi-an-2018-s01-ep01/hls/mapper-msd/profile.m3u8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Recommended minimum configuration: | |
# | |
# Example rule allowing access from your local networks. | |
# Adapt to list your (internal) IP networks from where browsing | |
# should be allowed | |
acl localnet src 10.0.0.0/8 # RFC1918 possible internal network | |
acl localnet src 172.16.0.0/12 # RFC1918 possible internal network | |
acl localnet src 192.168.0.0/16 # RFC1918 possible internal network |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
postgres: | |
container_name: postgres | |
image: postgres:12 | |
restart: always | |
ports: | |
- 5432:5432 | |
volumes: | |
- db_data:/var/lib/postgresql/data |