You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
# 设置环境变量
|
|
|
|
#服务端端口
|
|
export PORT=2233
|
|
#客户端访问地址
|
|
export webClient=https://risk.kirito.cool
|
|
#客户端端口
|
|
export serverPort=5000
|
|
#客户端监听地址
|
|
export listenAddress=0.0.0.0
|
|
#服务端访问地址
|
|
export apiServer=https://risk.kirito.cool
|
|
|
|
|