Compare commits
4 Commits
5d76411416
...
3eee711838
Author | SHA1 | Date |
---|---|---|
|
3eee711838 | |
|
c1147ddb4e | |
|
b752c83c18 | |
|
1e6d054447 |
|
@ -2,6 +2,11 @@ tcp_nopush on;
|
|||
tcp_nodelay on;
|
||||
|
||||
vod_segment_duration 2000;
|
||||
vod_hls_mpegts_align_pts on;
|
||||
vod_hls_mpegts_align_frames off;
|
||||
vod_hls_force_unmuxed_segments on;
|
||||
vod_force_playlist_type_vod on;
|
||||
vod_force_continuous_timestamps on;
|
||||
vod_manifest_segment_durations_mode accurate;
|
||||
vod_align_segments_to_key_frames on;
|
||||
vod_output_buffer_pool 64k 32;
|
||||
|
|
|
@ -5,6 +5,9 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
|
|||
First, run the development server:
|
||||
|
||||
```bash
|
||||
export UPSTREAM_URL="https://gdq-a.upstream.streaminginter.net/"
|
||||
export NODE_OPTIONS="--openssl-legacy-provider"
|
||||
|
||||
npm run dev
|
||||
# or
|
||||
yarn dev
|
||||
|
|
|
@ -15,7 +15,7 @@ RUN adduser -h /usr/src -S -u 999 apk
|
|||
RUN addgroup apk abuild
|
||||
RUN echo "apk ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||
USER apk
|
||||
RUN abuild-keygen -a -i
|
||||
RUN yes "" | abuild-keygen -a -i
|
||||
|
||||
# Check out aports
|
||||
RUN git config --global user.name Docker
|
||||
|
|
Loading…
Reference in New Issue