diff --git a/conf/system/application.conf b/conf/system/application.conf new file mode 100644 index 0000000..c80204c --- /dev/null +++ b/conf/system/application.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/applications { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/application.lua'; +} \ No newline at end of file diff --git a/conf/system/auth.conf b/conf/system/auth.conf new file mode 100644 index 0000000..287e670 --- /dev/null +++ b/conf/system/auth.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/auth { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/auth.lua'; +} \ No newline at end of file diff --git a/conf/system/organization.conf b/conf/system/organization.conf new file mode 100644 index 0000000..9acb9e4 --- /dev/null +++ b/conf/system/organization.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/organizations { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/organization.lua'; +} \ No newline at end of file diff --git a/conf/system/permission.conf b/conf/system/permission.conf new file mode 100644 index 0000000..a4d2de2 --- /dev/null +++ b/conf/system/permission.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/permissions { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/permission.lua'; +} \ No newline at end of file diff --git a/conf/system/role.conf b/conf/system/role.conf new file mode 100644 index 0000000..b056e5e --- /dev/null +++ b/conf/system/role.conf @@ -0,0 +1,4 @@ +#API接口文件 +location /api/system/roles { + content_by_lua_file '/home/frankly/work/AuthPlatform/src/api/system/role.lua'; +} \ No newline at end of file