增加需要使用的配置文件

This commit is contained in:
wanglei 2025-10-29 17:32:33 +08:00
parent 795a60d78d
commit 2bfb2693ad
5 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#API接口文件
location /api/system/applications {
content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/application.lua';
}

4
conf/system/auth.conf Normal file
View File

@ -0,0 +1,4 @@
#API接口文件
location /api/system/auth {
content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/auth.lua';
}

View File

@ -0,0 +1,4 @@
#API接口文件
location /api/system/organizations {
content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/organization.lua';
}

View File

@ -0,0 +1,4 @@
#API接口文件
location /api/system/permissions {
content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/permission.lua';
}

4
conf/system/role.conf Normal file
View File

@ -0,0 +1,4 @@
#API接口文件
location /api/system/roles {
content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/role.lua';
}