mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-07-14 03:23:48 +08:00
59 lines
1.6 KiB
C#
59 lines
1.6 KiB
C#
using System.Collections.Generic;
|
||
|
||
namespace Infrastructure
|
||
{
|
||
/// <summary>
|
||
/// 配置项
|
||
/// </summary>
|
||
public class AppSetting
|
||
{
|
||
|
||
public AppSetting()
|
||
{
|
||
SSOPassport = "http://localhost:52789";
|
||
Version = "";
|
||
UploadPath = "";
|
||
IdentityServerUrl = "";
|
||
}
|
||
/// <summary>
|
||
/// SSO地址
|
||
/// </summary>
|
||
public string SSOPassport { get; set; }
|
||
|
||
/// <summary>
|
||
/// 版本信息
|
||
/// 如果为demo,则屏蔽Post请求
|
||
/// </summary>
|
||
public string Version { get; set; }
|
||
|
||
/// <summary>
|
||
/// 数据库类型 SqlServer、MySql
|
||
/// </summary>
|
||
public Dictionary<string, string> DbTypes { get; set; }
|
||
|
||
/// <summary> 附件上传路径</summary>
|
||
public string UploadPath { get; set; }
|
||
|
||
//identity授权的地址
|
||
public string IdentityServerUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// Redis服务器配置
|
||
/// </summary>
|
||
public string RedisConf { get; set; }
|
||
|
||
/// <summary>
|
||
/// JWT签名密钥,用于本地认证模式下生成和验证JWT Token
|
||
/// </summary>
|
||
public string JwtSecret { get; set; } = "openauth_default_jwt_secret_key_2024";
|
||
|
||
/// <summary>
|
||
/// JWT Token过期天数,默认10天
|
||
/// </summary>
|
||
public int JwtExpireDays { get; set; } = 10;
|
||
|
||
//是否是Identity授权方式
|
||
public bool IsIdentityAuth => !string.IsNullOrEmpty(IdentityServerUrl);
|
||
}
|
||
}
|