dockerfiles/speedtest-x/backend/config.php

17 lines
306 B
PHP
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
/**
* 最多保存多少条测试记录
*/
const MAX_LOG_COUNT = 100;
/**
* IP运营商解析服务(1) ip.sb | (2) ipinfo.io 如果1解析ip异常请切换成2
*/
const IP_SERVICE = 'ip.sb';
/**
* 是否允许同一IP记录多条测速结果
*/
const SAME_IP_MULTI_LOGS = false;