1 Star 0 Fork 199

shawnwu/ReZero

forked from 阿妮亚/ReZero 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
appsettings.json 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
阿妮亚 提交于 2024-05-26 16:37 . 跨域
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ReZero": {
"BasicDatabase": {
/* MySql,SqlServer,Sqlite,Oracle,PostgreSQL,Dm (达梦),Kdbndp(人大金仓默认模式) */
"DbType": "Sqlite",
"ConnectionString": "datasource=rezero.db"
},
"Ui": {
/*纯ReZero开发可以设为false,true用于兼容Swagger用户*/
"ShowNativeApiDocument": false
},
"Jwt": {
"Enable": false, //设置true会启用自带的jwt授权
"Secret": "C0mPl3xS3cr3tK3yF0rJWT@DEVELOPMENT",
"UserTableName": "UserTable", //用户表的表名 (实体管理可以创建表,操作步骤:1.创建实体 2.同步生成表
"UserNameFieldName": "username", //用户名字段
"PasswordFieldName": "password", //密码字段
"Expires": 1000, //分钟
"Claim": [ // 数据库操作会用到Claim中的值作为条件
{
"Key": "Id", //Claim Key
"FieldName": "Id", //用户表中的字段
"Type": "long" //C#类型
}
],
//禁用系统接口, 设置为true将禁用所有系统接口(建表、建接口等)
"DisableSystemInterface": false
},
"Cors": {
"Enable": true, //设置为true启动自带的跨域
"PolicyName": "cors",
"Headers": [ "*" ],
"Methods": [ "*" ],
//可以跨域的地址
"Origins": [ "http://localhost:52798", "http://localhost:5000" ] //可以配多个地址
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/webshare520/ReZero.git
git@gitee.com:webshare520/ReZero.git
webshare520
ReZero
ReZero
master

搜索帮助