@@ -56,6 +56,14 @@ class ConfigReadException(Exception):
56
56
"_debug_mode-desc" : "是否开启调试模式" ,
57
57
"log_length_limit" : 500 ,
58
58
"_log_length_limit-desc" : "单条日志长度限制" ,
59
+ "fakeip" : "1.0.1.114" ,
60
+ "_fakeip-desc" : "服务器在海外时的IP伪装值" ,
61
+ "proxy" : {
62
+ "enable" : False ,
63
+ "http_addr" : "http://127.0.0.1:7890" ,
64
+ "https_addr" : "https://127.0.0.1:7890" ,
65
+ },
66
+ "_proxy-desc" : "代理配置,HTTP与HTTPS协议需分开配置" ,
59
67
},
60
68
"security" : {
61
69
"key" : {
@@ -522,7 +530,16 @@ def initConfig():
522
530
write_data ('banList' , [])
523
531
write_data ('requestTime' , {})
524
532
logger .info ('数据库内容为空,已写入默认值' )
525
-
533
+
534
+ # 处理代理配置
535
+ if (read_config ('common.proxy.enable' )):
536
+ if (read_config ('common.proxy.http_value' )):
537
+ os .environ ['http_proxy' ] = read_config ('common.proxy.http_value' )
538
+ logger .info ('HTTP协议代理地址: ' + read_config ('common.proxy.http_value' ))
539
+ if (read_config ('common.proxy.https_value' )):
540
+ os .environ ['https_proxy' ] = read_config ('common.proxy.https_value' )
541
+ logger .info ('HTTPS协议代理地址: ' + read_config ('common.proxy.https_value' ))
542
+ logger .info ('代理功能已开启,请确保代理地址正确,否则无法连接网络' )
526
543
527
544
def ban_ip (ip_addr , ban_time = - 1 ):
528
545
if read_config ('security.banlist.enable' ):
0 commit comments