Compare commits

...

4 Commits

3 changed files with 9 additions and 1 deletions

View File

@ -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;

View File

@ -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

View File

@ -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