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.

10 lines
305 B

<?php
return [
/** 渠道入口链接允许的时间偏差,单位:秒。 */
'timestamp_window_seconds' => (int) env('CHANNEL_ENTRY_TIMESTAMP_WINDOW_SECONDS', 300),
/** 渠道入口必须通过 HTTPS 访问。 */
'require_https' => (bool) env('CHANNEL_ENTRY_REQUIRE_HTTPS', true),
];