2024-01-03 09:54:57 +08:00

13 lines
641 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
define('SERVER_ADDRESS', '192.168.1.161');//服务注册地址需为内网IP地址
define('SERVER_PORT', '2346');//服务注册端口
define('CLIENT_PORT', '2345');//客户端监听端口
//ssl配置 请使用绝对路径。不开启可以不用关注
define('USE_SSL', false);//是否使用ssl
define('SITE_URL', 'https://beta.vilson.xyz');//接口地址
define('LOCAL_CERT', '/www/wwwroot/EasyProjectApi/server.pem');// 证书路径也可以是crt文件
define('LOCAL_PK', '/www/wwwroot/EasyProjectApi/server.key');
define('VERIFY_PEER', false);
define('ALLOW_SELF_SIGNED', false);//如果是自签名证书需要开启此选项