mediaserver: update settings
This commit is contained in:
parent
3d5fb42578
commit
1429fbbb45
2 changed files with 51 additions and 30 deletions
Binary file not shown.
|
@ -1,39 +1,60 @@
|
||||||
{ lib, config, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
services.nginx.virtualHosts."default.internal.kempkens.network" = {
|
services.nginx = {
|
||||||
listen = [
|
additionalModules = with pkgs.nginxModules; [
|
||||||
{
|
vod
|
||||||
addr = "0.0.0.0";
|
|
||||||
port = 443;
|
|
||||||
ssl = true;
|
|
||||||
extraParameters = [
|
|
||||||
"fastopen=63"
|
|
||||||
"backlog=1023"
|
|
||||||
"deferred"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
addr = "[::0]";
|
|
||||||
port = 443;
|
|
||||||
ssl = true;
|
|
||||||
extraParameters = [
|
|
||||||
"fastopen=63"
|
|
||||||
"backlog=1023"
|
|
||||||
"deferred"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
|
|
||||||
default = true;
|
appendHttpConfig = ''
|
||||||
quic = false;
|
aio on;
|
||||||
|
|
||||||
onlySSL = true;
|
vod_mode local;
|
||||||
useACMEHost = "internal.kempkens.network";
|
vod_metadata_cache metadata_cache 16m;
|
||||||
|
vod_response_cache response_cache 512m;
|
||||||
|
vod_last_modified_types *;
|
||||||
|
vod_segment_duration 9000;
|
||||||
|
vod_align_segments_to_key_frames on;
|
||||||
|
vod_dash_fragment_file_name_prefix "segment";
|
||||||
|
vod_hls_segment_file_name_prefix "segment";
|
||||||
|
|
||||||
locations."/" = {
|
vod_manifest_segment_durations_mode accurate;
|
||||||
return = "418";
|
'';
|
||||||
|
|
||||||
|
virtualHosts."default.internal.kempkens.network" = {
|
||||||
|
listen = [
|
||||||
|
{
|
||||||
|
addr = "0.0.0.0";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
extraParameters = [
|
||||||
|
"fastopen=63"
|
||||||
|
"backlog=1023"
|
||||||
|
"deferred"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
addr = "[::0]";
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
extraParameters = [
|
||||||
|
"fastopen=63"
|
||||||
|
"backlog=1023"
|
||||||
|
"deferred"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
default = true;
|
||||||
|
quic = false;
|
||||||
|
|
||||||
|
onlySSL = true;
|
||||||
|
useACMEHost = "internal.kempkens.network";
|
||||||
|
|
||||||
|
locations."/" = {
|
||||||
|
return = "418";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue