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.
23 lines
775 B
23 lines
775 B
这是 linux 版本,如果需要 windows 也可以。
|
|
|
|
* 运行参数: 游戏的 appkey(从中台获取的 usdk 参数 )
|
|
|
|
* 运行示例: (u2的参数)
|
|
|
|
./usdk.login-valid.linux-amd64.20230822 srv -i 17319 -k u6brryv6edcthymo3zh0 -v >> ./loginvalid.log &
|
|
|
|
* 访问路径:
|
|
|
|
http://{ip}:5000/login
|
|
|
|
相当于访问正式环境的,如 http://uglobal.yingxiong.com/hu/v1/login/checkUserInfo.lg
|
|
|
|
* 如果使用 nginx 代理,参考配置:
|
|
|
|
location ^~/hu-u2/v1/login/checkUserInfo.lg {
|
|
proxy_pass http://localhost:5000/login;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
client_max_body_size 100m;
|
|
}
|