CRM/webman/config/jwt.php
2025-03-14 14:27:33 +08:00

6 lines
221 B
PHP
Raw Permalink 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
return [
'secret' => 'Hj3$kLm8NpQrStUvXwZ1y2C4D6E8G', // 替换为高强度的密钥
'algorithm' => 'HS256', // 加密算法
'expire' => 3600 * 24 * 7, // 过期时间7天
];