feat: 增加伪静态设置 (#640)

This commit is contained in:
zhengkunwang223
2023-04-14 16:01:06 +08:00
committed by GitHub
parent e7608673d7
commit 6595ad6228
50 changed files with 925 additions and 4 deletions

View File

@@ -8715,6 +8715,90 @@ const docTemplate = `{
}
}
},
"/websites/rewrite": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "获取伪静态配置",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Get rewrite conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxRewriteReq"
}
}
],
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/websites/rewrite/update": {
"post": {
"security": [
{
"ApiKeyAuth": []
}
],
"description": "更新伪静态配置",
"consumes": [
"application/json"
],
"tags": [
"Website"
],
"summary": "Update rewrite conf",
"parameters": [
{
"description": "request",
"name": "request",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/request.NginxRewriteUpdate"
}
}
],
"responses": {
"200": {
"description": "OK"
}
},
"x-panel-log": {
"BeforeFuntions": [
{
"db": "websites",
"input_colume": "id",
"input_value": "websiteID",
"isList": false,
"output_colume": "primary_domain",
"output_value": "domain"
}
],
"bodyKeys": [
"websiteID"
],
"formatEN": "Nginx conf rewrite update [domain]",
"formatZH": "伪静态配置修改 [domain]",
"paramKeys": []
}
}
},
"/websites/search": {
"post": {
"security": [
@@ -11830,9 +11914,15 @@ const docTemplate = `{
"proxy": {
"type": "string"
},
"proxyType": {
"type": "string"
},
"remark": {
"type": "string"
},
"rewrite": {
"type": "string"
},
"runtimeID": {
"type": "integer"
},
@@ -12404,6 +12494,40 @@ const docTemplate = `{
}
}
},
"request.NginxRewriteReq": {
"type": "object",
"required": [
"name",
"websiteId"
],
"properties": {
"name": {
"type": "string"
},
"websiteId": {
"type": "integer"
}
}
},
"request.NginxRewriteUpdate": {
"type": "object",
"required": [
"content",
"name",
"websiteId"
],
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
},
"websiteId": {
"type": "integer"
}
}
},
"request.NginxScopeReq": {
"type": "object",
"required": [
@@ -13402,9 +13526,15 @@ const docTemplate = `{
"proxy": {
"type": "string"
},
"proxyType": {
"type": "string"
},
"remark": {
"type": "string"
},
"rewrite": {
"type": "string"
},
"runtimeID": {
"type": "integer"
},