mlbserver 2025.7.21 → 2025.7.26-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +24 -24
- package/README.md +100 -100
- package/docker-cli +7 -7
- package/docker-compose.yml +23 -23
- package/index.js +3524 -3491
- package/mlbserver.subfolder.conf +19 -19
- package/package.json +30 -30
- package/session.js +5352 -5339
package/mlbserver.subfolder.conf
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
## Version 2025/02/27
|
|
2
|
-
# make sure that your mlbserver container is named mlbserver
|
|
3
|
-
# make sure that mlbserver is set to work with the base url /mlbserver/
|
|
4
|
-
#
|
|
5
|
-
# For the subfolder to work you need to edit your mlbserver docker compose / cli config
|
|
6
|
-
# and set the http_root environment variable to /mlbserver, e.g. in docker compose:
|
|
7
|
-
# - http_root=/mlbserver
|
|
8
|
-
|
|
9
|
-
location /mlbserver {
|
|
10
|
-
return 301 $scheme://$host/mlbserver/;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
location /mlbserver/ {
|
|
14
|
-
include /config/nginx/proxy.conf;
|
|
15
|
-
include /config/nginx/resolver.conf;
|
|
16
|
-
set $upstream_app mlbserver;
|
|
17
|
-
set $upstream_port 9999;
|
|
18
|
-
set $upstream_proto http;
|
|
19
|
-
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
|
1
|
+
## Version 2025/02/27
|
|
2
|
+
# make sure that your mlbserver container is named mlbserver
|
|
3
|
+
# make sure that mlbserver is set to work with the base url /mlbserver/
|
|
4
|
+
#
|
|
5
|
+
# For the subfolder to work you need to edit your mlbserver docker compose / cli config
|
|
6
|
+
# and set the http_root environment variable to /mlbserver, e.g. in docker compose:
|
|
7
|
+
# - http_root=/mlbserver
|
|
8
|
+
|
|
9
|
+
location /mlbserver {
|
|
10
|
+
return 301 $scheme://$host/mlbserver/;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
location /mlbserver/ {
|
|
14
|
+
include /config/nginx/proxy.conf;
|
|
15
|
+
include /config/nginx/resolver.conf;
|
|
16
|
+
set $upstream_app mlbserver;
|
|
17
|
+
set $upstream_port 9999;
|
|
18
|
+
set $upstream_proto http;
|
|
19
|
+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
|
20
20
|
}
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mlbserver",
|
|
3
|
-
"version": "2025.07.
|
|
4
|
-
"description": "",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/tonywagner/mlbserver.git"
|
|
8
|
-
},
|
|
9
|
-
"dependencies": {
|
|
10
|
-
"ffmpeg-static": "^4.4.0",
|
|
11
|
-
"fluent-ffmpeg": "^2.1.2",
|
|
12
|
-
"hls-server": "^1.5.0",
|
|
13
|
-
"http": "0.0.1-security",
|
|
14
|
-
"http-attach": "^1.0.0",
|
|
15
|
-
"minimist": "^1.2.8",
|
|
16
|
-
"readline-sync": "^1.4.10",
|
|
17
|
-
"request": "^2.88.2",
|
|
18
|
-
"request-promise": "^4.2.6",
|
|
19
|
-
"root": "^3.2.0",
|
|
20
|
-
"tough-cookie-filestore": "^0.0.1",
|
|
21
|
-
"xml2js": "^0.4.23"
|
|
22
|
-
},
|
|
23
|
-
"bin": {
|
|
24
|
-
"mlbserver": "index.js"
|
|
25
|
-
},
|
|
26
|
-
"bugs": {
|
|
27
|
-
"url": "https://github.com/tonywagner/mlbserver/issues"
|
|
28
|
-
},
|
|
29
|
-
"homepage": "https://github.com/tonywagner/mlbserver#readme"
|
|
30
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mlbserver",
|
|
3
|
+
"version": "2025.07.26-3",
|
|
4
|
+
"description": "",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/tonywagner/mlbserver.git"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"ffmpeg-static": "^4.4.0",
|
|
11
|
+
"fluent-ffmpeg": "^2.1.2",
|
|
12
|
+
"hls-server": "^1.5.0",
|
|
13
|
+
"http": "0.0.1-security",
|
|
14
|
+
"http-attach": "^1.0.0",
|
|
15
|
+
"minimist": "^1.2.8",
|
|
16
|
+
"readline-sync": "^1.4.10",
|
|
17
|
+
"request": "^2.88.2",
|
|
18
|
+
"request-promise": "^4.2.6",
|
|
19
|
+
"root": "^3.2.0",
|
|
20
|
+
"tough-cookie-filestore": "^0.0.1",
|
|
21
|
+
"xml2js": "^0.4.23"
|
|
22
|
+
},
|
|
23
|
+
"bin": {
|
|
24
|
+
"mlbserver": "index.js"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/tonywagner/mlbserver/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/tonywagner/mlbserver#readme"
|
|
30
|
+
}
|