Merge pull request #1412 from ancienter/develop-support-content-path

[bugfix]支持context-path配置
pull/1389/head
648540858 2024-04-10 20:01:32 +08:00 committed by GitHub
commit 0f55872dbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -55,6 +55,9 @@ public class ZLMMediaServerStatusManger {
@Value("${server.port}")
private Integer serverPort;
@Value("${server.servlet.context-path:}")
private String serverServletContextPath;
@Autowired
private UserSetting userSetting;
@ -239,7 +242,7 @@ public class ZLMMediaServerStatusManger {
logger.info("[媒体服务节点] 正在设置 {} -> {}:{}",
mediaServerItem.getId(), mediaServerItem.getIp(), mediaServerItem.getHttpPort());
String protocol = sslEnabled ? "https" : "http";
String hookPrefix = String.format("%s://%s:%s/index/hook", protocol, mediaServerItem.getHookIp(), serverPort);
String hookPrefix = String.format("%s://%s:%s%s/index/hook", protocol, mediaServerItem.getHookIp(), serverPort, (serverServletContextPath == null || "/".equals(serverServletContextPath)) ? "" : serverServletContextPath);
Map<String, Object> param = new HashMap<>();
param.put("api.secret",mediaServerItem.getSecret()); // -profile:v Baseline