chore: shift all ports by +40000 to avoid defaults

8080->48080, 8889->48889, 8888->48888, 9997->49997, 8189->48189

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 20:52:50 -04:00
parent b217cbbc0f
commit c23e8799fe
5 changed files with 40 additions and 40 deletions
+6 -6
View File
@@ -47,10 +47,10 @@ CONFIG = {
"mediamtx_binary": "",
"mediamtx_config": "",
"frontend_dir": "",
"http_port": 8080,
"firewall_rule_name": "GameStream-UDP-8189",
"http_port": 48080,
"firewall_rule_name": "GameStream-UDP-48189",
"public_url": "https://stream.hetherman.cloud",
"api_url": "http://127.0.0.1:9997",
"api_url": "http://127.0.0.1:49997",
}
@@ -401,15 +401,15 @@ def script_defaults(settings):
obs.obs_data_set_default_string(settings, "mediamtx_binary", "")
obs.obs_data_set_default_string(settings, "mediamtx_config", "")
obs.obs_data_set_default_string(settings, "frontend_dir", "")
obs.obs_data_set_default_int(settings, "http_port", 8080)
obs.obs_data_set_default_int(settings, "http_port", 48080)
obs.obs_data_set_default_string(
settings, "firewall_rule_name", "GameStream-UDP-8189",
settings, "firewall_rule_name", "GameStream-UDP-48189",
)
obs.obs_data_set_default_string(
settings, "public_url", "https://stream.hetherman.cloud",
)
obs.obs_data_set_default_string(
settings, "api_url", "http://127.0.0.1:9997",
settings, "api_url", "http://127.0.0.1:49997",
)