Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
谢明辉
/
fanxing3
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit ed354d01
authored
Nov 12, 2021
by
xmh
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1. <refactor> 代码优化
2. <feat> 视频源来自视频云平台的任务下发时逻辑调整
1 parent
640ab8c2
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
51 additions
and
25 deletions
fanxing-gateway/src/main/java/com/viontech/fanxing/forward/AuthorizationFilter.java
fanxing-ops/src/main/java/com/viontech/fanxing/ops/controller/web/ChannelController.java
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/adapter/ChannelService.java
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/adapter/DictCodeService.java
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/impl/ChannelServiceImpl.java
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/impl/DictCodeServiceImpl.java
fanxing-task/src/main/java/com/viontech/fanxing/task/model/vaserver/VATask.java
fanxing-task/src/main/java/com/viontech/fanxing/task/runner/TaskRunner.java
fanxing-task/src/main/java/com/viontech/fanxing/task/service/VAServerHttpService.java
fanxing-task/src/main/java/com/viontech/fanxing/task/service/impl/TaskServiceImpl.java
images/nginx/fanxing3.conf
fanxing-gateway/src/main/java/com/viontech/fanxing/forward/AuthorizationFilter.java
View file @
ed354d0
...
@@ -24,7 +24,6 @@ import java.util.Collections;
...
@@ -24,7 +24,6 @@ import java.util.Collections;
import
java.util.HashMap
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
java.util.concurrent.CompletableFuture
;
import
java.util.concurrent.ExecutorService
;
import
java.util.concurrent.ExecutorService
;
import
java.util.concurrent.Executors
;
import
java.util.concurrent.Executors
;
import
java.util.concurrent.Future
;
import
java.util.concurrent.Future
;
...
@@ -98,7 +97,7 @@ public class AuthorizationFilter implements GlobalFilter {
...
@@ -98,7 +97,7 @@ public class AuthorizationFilter implements GlobalFilter {
response
.
setStatusCode
(
HttpStatus
.
UNAUTHORIZED
);
response
.
setStatusCode
(
HttpStatus
.
UNAUTHORIZED
);
return
response
.
writeWith
(
Mono
.
just
(
msg
).
map
(
x
->
{
return
response
.
writeWith
(
Mono
.
just
(
msg
).
map
(
x
->
{
JsonMessageUtil
.
JsonMessage
errorJsonMsg
=
JsonMessageUtil
.
getErrorJsonMsg
(
msg
);
JsonMessageUtil
.
JsonMessage
errorJsonMsg
=
JsonMessageUtil
.
getErrorJsonMsg
(
401
,
"authorization校验失败"
);
String
s
=
JSON
.
toJSONString
(
errorJsonMsg
);
String
s
=
JSON
.
toJSONString
(
errorJsonMsg
);
byte
[]
bytes
=
s
.
getBytes
(
StandardCharsets
.
UTF_8
);
byte
[]
bytes
=
s
.
getBytes
(
StandardCharsets
.
UTF_8
);
return
response
.
bufferFactory
().
wrap
(
bytes
);
return
response
.
bufferFactory
().
wrap
(
bytes
);
...
...
fanxing-ops/src/main/java/com/viontech/fanxing/ops/controller/web/ChannelController.java
View file @
ed354d0
...
@@ -143,9 +143,9 @@ public class ChannelController extends ChannelBaseController {
...
@@ -143,9 +143,9 @@ public class ChannelController extends ChannelBaseController {
return
JsonMessageUtil
.
getSuccessJsonMsg
(
result
);
return
JsonMessageUtil
.
getSuccessJsonMsg
(
result
);
}
}
@GetMapping
(
"/
sip28181
/pull"
)
@GetMapping
(
"/
videoCloud
/pull"
)
public
Object
pullFrom
Sip28181
()
{
public
Object
pullFrom
VideoCloud
()
{
channelService
.
pullFrom
Sip28181
();
channelService
.
pullFrom
VideoCloud
();
return
JsonMessageUtil
.
getSuccessJsonMsg
();
return
JsonMessageUtil
.
getSuccessJsonMsg
();
}
}
...
...
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/adapter/ChannelService.java
View file @
ed354d0
...
@@ -18,5 +18,5 @@ public interface ChannelService extends BaseService<Channel> {
...
@@ -18,5 +18,5 @@ public interface ChannelService extends BaseService<Channel> {
ChannelVo
update
(
long
id
,
ChannelVo
vo
);
ChannelVo
update
(
long
id
,
ChannelVo
vo
);
Object
pullFrom
Sip28181
();
Object
pullFrom
VideoCloud
();
}
}
\ No newline at end of file
\ No newline at end of file
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/adapter/DictCodeService.java
View file @
ed354d0
...
@@ -13,7 +13,7 @@ public interface DictCodeService extends BaseService<DictCode> {
...
@@ -13,7 +13,7 @@ public interface DictCodeService extends BaseService<DictCode> {
ImmutablePair
<
Map
<
Long
,
DictCodeVo
>,
List
<
DictCodeVo
>>
getTreeCode
(
List
<
DictCode
>
dictCodes
);
ImmutablePair
<
Map
<
Long
,
DictCodeVo
>,
List
<
DictCodeVo
>>
getTreeCode
(
List
<
DictCode
>
dictCodes
);
DictCode
getOrCreateOrgCode
(
String
code
);
DictCode
getOrCreateOrgCode
(
String
code
,
String
name
);
DictCode
saveAndGet
(
String
name
,
String
code
,
String
note
,
Long
cateId
,
Long
parentId
);
DictCode
saveAndGet
(
String
name
,
String
code
,
String
note
,
Long
cateId
,
Long
parentId
);
}
}
\ No newline at end of file
\ No newline at end of file
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/impl/ChannelServiceImpl.java
View file @
ed354d0
...
@@ -218,7 +218,7 @@ public class ChannelServiceImpl extends BaseServiceImpl<Channel> implements Chan
...
@@ -218,7 +218,7 @@ public class ChannelServiceImpl extends BaseServiceImpl<Channel> implements Chan
*/
*/
@Override
@Override
public
JSONObject
nvs3000
(
String
nvsUrl
,
String
nvsRegex
)
{
public
JSONObject
nvs3000
(
String
nvsUrl
,
String
nvsRegex
)
{
DictCode
nvs3000Code
=
dictcodeService
.
getOrCreateOrgCode
(
"nvs3000"
);
DictCode
nvs3000Code
=
dictcodeService
.
getOrCreateOrgCode
(
"nvs3000"
,
"nvs3000"
);
String
addressUnid
=
nvs3000Code
.
getUnid
();
String
addressUnid
=
nvs3000Code
.
getUnid
();
ChannelExample
channelExample
=
new
ChannelExample
();
ChannelExample
channelExample
=
new
ChannelExample
();
...
@@ -281,10 +281,10 @@ public class ChannelServiceImpl extends BaseServiceImpl<Channel> implements Chan
...
@@ -281,10 +281,10 @@ public class ChannelServiceImpl extends BaseServiceImpl<Channel> implements Chan
}
}
@Override
@Override
public
Object
pullFrom
Sip28181
()
{
public
Object
pullFrom
VideoCloud
()
{
Assert
.
notNull
(
vionConfig
.
getSip
(),
"
sip28181
配置为空"
);
Assert
.
notNull
(
vionConfig
.
getSip
(),
"
视频云
配置为空"
);
Assert
.
hasText
(
vionConfig
.
getSip
().
getId
(),
"
sip28181
对接id为空"
);
Assert
.
hasText
(
vionConfig
.
getSip
().
getId
(),
"
视频云
对接id为空"
);
Assert
.
hasText
(
vionConfig
.
getSip
().
getUrl
(),
"
sip28181
对接地址为空"
);
Assert
.
hasText
(
vionConfig
.
getSip
().
getUrl
(),
"
视频云
对接地址为空"
);
JSONObject
response
=
WebClient
.
create
(
vionConfig
.
getSip
().
getUrl
())
JSONObject
response
=
WebClient
.
create
(
vionConfig
.
getSip
().
getUrl
())
.
get
()
.
get
()
...
@@ -293,25 +293,25 @@ public class ChannelServiceImpl extends BaseServiceImpl<Channel> implements Chan
...
@@ -293,25 +293,25 @@ public class ChannelServiceImpl extends BaseServiceImpl<Channel> implements Chan
.
bodyToMono
(
JSONObject
.
class
)
.
bodyToMono
(
JSONObject
.
class
)
.
block
(
Duration
.
ofSeconds
(
10
));
.
block
(
Duration
.
ofSeconds
(
10
));
DictCode
sip28181
=
dictcodeService
.
getOrCreateOrgCode
(
"
sip28181
"
);
DictCode
sip28181
=
dictcodeService
.
getOrCreateOrgCode
(
"
video_cloud"
,
"视频云
"
);
if
(
response
!=
null
&&
response
.
containsKey
(
"data"
))
{
if
(
response
!=
null
&&
response
.
containsKey
(
"data"
))
{
JSONArray
data
=
response
.
getJSONArray
(
"data"
);
JSONArray
data
=
response
.
getJSONArray
(
"data"
);
if
(
data
.
size
()
>
0
)
{
if
(
data
.
size
()
>
0
)
{
analyse
Sip28181
(
data
,
sip28181
,
sip28181
.
getCateId
());
analyse
VideoCloud
(
data
,
sip28181
,
sip28181
.
getCateId
());
}
}
}
}
return
null
;
return
null
;
}
}
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Transactional
(
rollbackFor
=
Exception
.
class
)
protected
void
analyse
Sip28181
(
JSONArray
data
,
DictCode
parent
,
Long
cateId
)
{
protected
void
analyse
VideoCloud
(
JSONArray
data
,
DictCode
parent
,
Long
cateId
)
{
for
(
int
i
=
0
;
i
<
data
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
data
.
size
();
i
++)
{
JSONObject
item
=
data
.
getJSONObject
(
i
);
JSONObject
item
=
data
.
getJSONObject
(
i
);
JSONArray
orzs
=
item
.
getJSONArray
(
"orzs"
);
JSONArray
orzs
=
item
.
getJSONArray
(
"orzs"
);
// orzs 的长度大于零, 说明是组织机构节点,需要添加到字典表中
// orzs 的长度大于零, 说明是组织机构节点,需要添加到字典表中
if
(
orzs
.
size
()
>
0
)
{
if
(
orzs
.
size
()
>
0
)
{
DictCode
dictCode
=
dictcodeService
.
saveAndGet
(
item
.
getString
(
"orzName"
),
item
.
getString
(
"orzId"
),
"
sip28181
"
,
cateId
,
parent
.
getId
());
DictCode
dictCode
=
dictcodeService
.
saveAndGet
(
item
.
getString
(
"orzName"
),
item
.
getString
(
"orzId"
),
"
video_cloud
"
,
cateId
,
parent
.
getId
());
analyse
Sip28181
(
orzs
,
dictCode
,
cateId
);
analyse
VideoCloud
(
orzs
,
dictCode
,
cateId
);
}
else
{
}
else
{
// 解析视频资源,devices->channels
// 解析视频资源,devices->channels
JSONArray
devices
=
item
.
getJSONArray
(
"devices"
);
JSONArray
devices
=
item
.
getJSONArray
(
"devices"
);
...
...
fanxing-ops/src/main/java/com/viontech/fanxing/ops/service/impl/DictCodeServiceImpl.java
View file @
ed354d0
...
@@ -55,12 +55,12 @@ public class DictCodeServiceImpl extends BaseServiceImpl<DictCode> implements Di
...
@@ -55,12 +55,12 @@ public class DictCodeServiceImpl extends BaseServiceImpl<DictCode> implements Di
}
}
@Override
@Override
public
DictCode
getOrCreateOrgCode
(
String
code
)
{
public
DictCode
getOrCreateOrgCode
(
String
code
,
String
name
)
{
DictCate
videoOrgCate
=
dictCateService
.
getVideoOrgCate
();
DictCate
videoOrgCate
=
dictCateService
.
getVideoOrgCate
();
Long
cateId
=
videoOrgCate
.
getId
();
Long
cateId
=
videoOrgCate
.
getId
();
DictCodeExample
dictCodeExample
=
new
DictCodeExample
();
DictCodeExample
dictCodeExample
=
new
DictCodeExample
();
dictCodeExample
.
createCriteria
().
andCateIdEqualTo
(
cateId
);
dictCodeExample
.
createCriteria
().
andCateIdEqualTo
(
cateId
)
.
andCodeEqualTo
(
code
)
;
List
<
DictCode
>
dictCodes
=
selectByExample
(
dictCodeExample
);
List
<
DictCode
>
dictCodes
=
selectByExample
(
dictCodeExample
);
DictCode
orgCode
=
null
;
DictCode
orgCode
=
null
;
for
(
DictCode
dictCode
:
dictCodes
)
{
for
(
DictCode
dictCode
:
dictCodes
)
{
...
@@ -72,12 +72,12 @@ public class DictCodeServiceImpl extends BaseServiceImpl<DictCode> implements Di
...
@@ -72,12 +72,12 @@ public class DictCodeServiceImpl extends BaseServiceImpl<DictCode> implements Di
if
(
orgCode
==
null
)
{
if
(
orgCode
==
null
)
{
orgCode
=
new
DictCode
();
orgCode
=
new
DictCode
();
orgCode
.
setCode
(
code
);
orgCode
.
setCode
(
code
);
orgCode
.
setName
(
cod
e
);
orgCode
.
setName
(
nam
e
);
orgCode
.
setCateId
(
cateId
);
orgCode
.
setCateId
(
cateId
);
orgCode
.
setNote
(
code
);
orgCode
.
setNote
(
code
);
orgCode
.
setNote
(
""
);
orgCode
.
setNote
(
""
);
insertSelective
(
orgCode
);
insertSelective
(
orgCode
);
return
getOrCreateOrgCode
(
code
);
return
getOrCreateOrgCode
(
code
,
name
);
}
}
return
orgCode
;
return
orgCode
;
}
}
...
...
fanxing-task/src/main/java/com/viontech/fanxing/task/model/vaserver/VATask.java
View file @
ed354d0
...
@@ -27,6 +27,7 @@ public class VATask {
...
@@ -27,6 +27,7 @@ public class VATask {
private
Integer
alg_type
;
private
Integer
alg_type
;
private
String
store_config
;
private
String
store_config
;
private
String
channel_unid
;
private
String
channel_unid
;
private
String
device_unid
;
private
String
stream_path
;
private
String
stream_path
;
private
Integer
stream_type
;
private
Integer
stream_type
;
private
Float
resource_use
;
private
Float
resource_use
;
...
...
fanxing-task/src/main/java/com/viontech/fanxing/task/runner/TaskRunner.java
View file @
ed354d0
...
@@ -131,6 +131,7 @@ public class TaskRunner {
...
@@ -131,6 +131,7 @@ public class TaskRunner {
RLock
jobLock
=
redisService
.
getLockMust
(
"lock:taskRunner"
);
RLock
jobLock
=
redisService
.
getLockMust
(
"lock:taskRunner"
);
try
{
try
{
RScoredSortedSet
<
String
>
set
=
redisService
.
getToBeTerminatedTaskUnidSet
();
RScoredSortedSet
<
String
>
set
=
redisService
.
getToBeTerminatedTaskUnidSet
();
RScoredSortedSet
<
String
>
toBeExecutedTaskUnidSet
=
redisService
.
getToBeExecutedTaskUnidSet
();
Collection
<
String
>
entryCollection
=
set
.
valueRange
(
0
,
true
,
System
.
currentTimeMillis
(),
true
);
Collection
<
String
>
entryCollection
=
set
.
valueRange
(
0
,
true
,
System
.
currentTimeMillis
(),
true
);
...
@@ -146,6 +147,8 @@ public class TaskRunner {
...
@@ -146,6 +147,8 @@ public class TaskRunner {
boolean
success
=
vaServerService
.
terminateTask
(
taskUnid
);
boolean
success
=
vaServerService
.
terminateTask
(
taskUnid
);
if
(
success
)
{
if
(
success
)
{
set
.
remove
(
taskUnid
);
set
.
remove
(
taskUnid
);
// 防止任务持续无法运行导致超过运行时段
toBeExecutedTaskUnidSet
.
remove
(
taskUnid
);
taskService
.
updateStatus
(
taskData
.
getTask
().
getId
(),
TaskStatus
.
PAUSE
.
val
);
taskService
.
updateStatus
(
taskData
.
getTask
().
getId
(),
TaskStatus
.
PAUSE
.
val
);
// 随机任务不进行部署
// 随机任务不进行部署
if
(
taskData
.
getTask
().
getRuntimeType
()
!=
3
)
{
if
(
taskData
.
getTask
().
getRuntimeType
()
!=
3
)
{
...
...
fanxing-task/src/main/java/com/viontech/fanxing/task/service/VAServerHttpService.java
View file @
ed354d0
...
@@ -2,6 +2,9 @@ package com.viontech.fanxing.task.service;
...
@@ -2,6 +2,9 @@ package com.viontech.fanxing.task.service;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONObject
;
import
com.alibaba.fastjson.JSONObject
;
import
com.ecwid.consul.v1.ConsulClient
;
import
com.viontech.fanxing.commons.constant.ChannelType
;
import
com.viontech.fanxing.commons.model.Channel
;
import
com.viontech.fanxing.task.model.TaskData
;
import
com.viontech.fanxing.task.model.TaskData
;
import
com.viontech.fanxing.task.model.vaserver.VATask
;
import
com.viontech.fanxing.task.model.vaserver.VATask
;
import
com.viontech.fanxing.task.model.vaserver.VaServerInfo
;
import
com.viontech.fanxing.task.model.vaserver.VaServerInfo
;
...
@@ -12,6 +15,7 @@ import org.springframework.stereotype.Service;
...
@@ -12,6 +15,7 @@ import org.springframework.stereotype.Service;
import
org.springframework.web.reactive.function.client.WebClient
;
import
org.springframework.web.reactive.function.client.WebClient
;
import
reactor.core.publisher.Mono
;
import
reactor.core.publisher.Mono
;
import
javax.annotation.Resource
;
import
java.time.Duration
;
import
java.time.Duration
;
/**
/**
...
@@ -25,11 +29,22 @@ import java.time.Duration;
...
@@ -25,11 +29,22 @@ import java.time.Duration;
@Slf4j
@Slf4j
public
class
VAServerHttpService
{
public
class
VAServerHttpService
{
@Resource
private
OpsClientService
opsClientService
;
@Resource
private
ConsulClient
consulClient
;
/**
/**
* 下发任务
* 下发任务
*/
*/
public
JSONObject
addTask
(
TaskData
taskData
,
VaServerInfo
vaServerInfo
)
{
public
JSONObject
addTask
(
TaskData
taskData
,
VaServerInfo
vaServerInfo
)
{
VATask
vaTask
=
new
VATask
(
taskData
);
VATask
vaTask
=
new
VATask
(
taskData
);
if
(
vaTask
.
getStream_type
().
equals
(
ChannelType
.
STREAM_SIP
.
value
))
{
Channel
channel
=
opsClientService
.
getChannelByChannelUnid
(
vaTask
.
getChannel_unid
());
String
deviceUnid
=
channel
.
getDeviceUnid
();
vaTask
.
setDevice_unid
(
deviceUnid
);
}
String
path
=
"/api/vaserver/v1/task"
;
String
path
=
"/api/vaserver/v1/task"
;
Mono
<
String
>
stringMono
=
WebClient
.
create
(
vaServerInfo
.
getServiceBaseUrl
())
Mono
<
String
>
stringMono
=
WebClient
.
create
(
vaServerInfo
.
getServiceBaseUrl
())
.
post
()
.
post
()
...
@@ -48,7 +63,11 @@ public class VAServerHttpService {
...
@@ -48,7 +63,11 @@ public class VAServerHttpService {
public
JSONObject
updateTask
(
TaskData
taskData
,
VaServerInfo
vaServerInfo
)
{
public
JSONObject
updateTask
(
TaskData
taskData
,
VaServerInfo
vaServerInfo
)
{
String
path
=
"/api/vaserver/v1/task"
;
String
path
=
"/api/vaserver/v1/task"
;
VATask
vaTask
=
new
VATask
(
taskData
);
VATask
vaTask
=
new
VATask
(
taskData
);
if
(
vaTask
.
getStream_type
().
equals
(
ChannelType
.
STREAM_SIP
.
value
))
{
Channel
channel
=
opsClientService
.
getChannelByChannelUnid
(
vaTask
.
getChannel_unid
());
String
deviceUnid
=
channel
.
getDeviceUnid
();
vaTask
.
setDevice_unid
(
deviceUnid
);
}
Mono
<
String
>
stringMono
=
WebClient
.
create
(
vaServerInfo
.
getServiceBaseUrl
())
Mono
<
String
>
stringMono
=
WebClient
.
create
(
vaServerInfo
.
getServiceBaseUrl
())
.
put
()
.
put
()
.
uri
(
uriBuilder
->
uriBuilder
.
path
(
path
).
build
())
.
uri
(
uriBuilder
->
uriBuilder
.
path
(
path
).
build
())
...
...
fanxing-task/src/main/java/com/viontech/fanxing/task/service/impl/TaskServiceImpl.java
View file @
ed354d0
...
@@ -33,6 +33,7 @@ import org.springframework.transaction.annotation.Transactional;
...
@@ -33,6 +33,7 @@ import org.springframework.transaction.annotation.Transactional;
import
javax.annotation.Resource
;
import
javax.annotation.Resource
;
import
java.util.Collection
;
import
java.util.Collection
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Optional
;
import
java.util.UUID
;
import
java.util.UUID
;
import
java.util.concurrent.TimeUnit
;
import
java.util.concurrent.TimeUnit
;
...
@@ -97,8 +98,9 @@ public class TaskServiceImpl extends BaseServiceImpl<Task> implements TaskServic
...
@@ -97,8 +98,9 @@ public class TaskServiceImpl extends BaseServiceImpl<Task> implements TaskServic
Channel
channel
=
opsClientService
.
getChannelByChannelUnid
(
channelUnid
);
Channel
channel
=
opsClientService
.
getChannelByChannelUnid
(
channelUnid
);
String
streamPath
=
task
.
getStreamPath
();
String
streamPath
=
task
.
getStreamPath
();
if
(
streamPath
==
null
)
{
if
(
streamPath
==
null
)
{
streamPath
=
channel
.
getStreamPath
(
);
streamPath
=
Optional
.
ofNullable
(
channel
.
getStreamPath
()).
orElse
(
""
);
task
.
setStreamPath
(
channel
.
getStreamPath
());
task
.
setStreamPath
(
channel
.
getStreamPath
());
task
.
setStreamType
(
channel
.
getStreamType
());
}
}
JSONArray
sceneArray
=
new
JSONArray
();
JSONArray
sceneArray
=
new
JSONArray
();
String
algType
=
task
.
getAlgType
();
String
algType
=
task
.
getAlgType
();
...
...
images/nginx/fanxing3.conf
View file @
ed354d0
...
@@ -31,11 +31,13 @@ server {
...
@@ -31,11 +31,13 @@ server {
location
/
api
/
video
-
server
/ {
location
/
api
/
video
-
server
/ {
rewrite
^/
api
/
video
-
server
/(.*) /$
1
break
;
rewrite
^/
api
/
video
-
server
/(.*) /$
1
break
;
add_header
Access
-
Control
-
Allow
-
Methods
'*'
;
add_header
Access
-
Control
-
Allow
-
Headers
'Origin, X-Requested-With, Content-Type, Accept, Authorization'
;
proxy_pass
http
://
192
.
168
.
9
.
233
:
10350
/;
proxy_pass
http
://
192
.
168
.
9
.
233
:
10350
/;
}
}
location
/
api
/
sip28181
/ {
location
/
api
/
video
-
cloud
/ {
rewrite
^/
api
/
sip28181
/(.*) /$
1
break
;
rewrite
^/
api
/
video
-
cloud
/(.*) /$
1
break
;
proxy_pass
http
://
192
.
168
.
9
.
233
:
8888
/;
proxy_pass
http
://
192
.
168
.
9
.
233
:
8888
/;
}
}
}
}
\ No newline at end of file
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment