blessing-skin-server/config/options.php

61 lines
2.5 KiB
PHP
Raw Normal View History

2016-07-29 12:45:35 +08:00
<?php
return [
'site_url' => '',
2018-02-25 09:19:48 +08:00
'site_name' => 'Blessing Skin',
2016-12-31 23:28:09 +08:00
'site_description' => 'Open-source PHP Minecraft Skin Hosting Service',
'user_can_register' => 'true',
'register_with_player_name' => 'true',
2018-08-17 12:32:44 +08:00
'require_verification' => 'false',
'regs_per_ip' => '3',
'ip_get_method' => '0',
'api_type' => 'false',
2018-02-25 09:19:48 +08:00
'announcement' => 'Welcome to Blessing Skin {version}!',
'color_scheme' => 'skin-blue',
2018-10-19 21:42:14 +08:00
'home_pic_url' => './app/bg.jpg',
'custom_css' => '',
'custom_js' => '',
'player_name_rule' => 'official',
'custom_player_name_regexp' => '',
'player_name_length_min' => '3',
'player_name_length_max' => '16',
'comment_script' => '',
'user_initial_score' => '1000',
'sign_gap_time' => '24',
'sign_score' => '10,100',
'score_per_storage' => 'true',
'private_score_per_storage' => '10',
'return_score' => 'true',
'score_per_player' => '100',
'sign_after_zero' => 'false',
'version' => '',
'copyright_text' => '<strong>Copyright &copy; {year} <a href="{site_url}">{site_name}</a>.</strong> All rights reserved.',
'auto_del_invalid_texture' => 'false',
'allow_downloading_texture' => 'true',
'texture_name_regexp' => '',
'return_204_when_notfound' => 'false',
'cache_expire_time' => '31536000',
'max_upload_file_size' => '1024',
'force_ssl' => 'false',
'auto_detect_asset_url' => 'true',
2016-12-27 23:05:09 +08:00
'plugins_enabled' => '',
'copyright_prefer' => '0',
2016-12-31 13:36:46 +08:00
'score_per_closet_item' => '0',
'favicon_url' => 'app/favicon.ico',
2019-03-20 23:28:04 +08:00
'enable_redis' => 'false',
'score_award_per_texture' => '0',
'take_back_scores_after_deletion' => 'true',
'score_award_per_like' => '0',
'meta_keywords' => '',
'meta_description' => '',
'meta_extras' => '',
'cdn_address' => '',
2019-03-24 09:58:37 +08:00
'recaptcha_sitekey' => '',
'recaptcha_secretkey' => '',
2019-03-24 15:45:50 +08:00
'recaptcha_invisible' => 'false',
'reporter_score_modification' => '0',
'reporter_reward_score' => '0',
'content_policy' => '',
'transparent_navbar' => 'false',
2016-07-29 12:45:35 +08:00
];