| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- {
- "operationId": "create404Host",
- "summary": "Create a 404 Host",
- "tags": ["404-hosts"],
- "security": [
- {
- "bearerAuth": [
- "dead_hosts.manage"
- ]
- }
- ],
- "requestBody": {
- "description": "404 Host Payload",
- "required": true,
- "content": {
- "application/json": {
- "schema": {
- "type": "object",
- "additionalProperties": false,
- "required": [
- "domain_names"
- ],
- "properties": {
- "domain_names": {
- "$ref": "../../../components/dead-host-object.json#/properties/domain_names"
- },
- "certificate_id": {
- "$ref": "../../../components/dead-host-object.json#/properties/certificate_id"
- },
- "ssl_forced": {
- "$ref": "../../../components/dead-host-object.json#/properties/ssl_forced"
- },
- "hsts_enabled": {
- "$ref": "../../../components/dead-host-object.json#/properties/hsts_enabled"
- },
- "hsts_subdomains": {
- "$ref": "../../../components/dead-host-object.json#/properties/hsts_subdomains"
- },
- "http2_support": {
- "$ref": "../../../components/dead-host-object.json#/properties/http2_support"
- },
- "advanced_config": {
- "$ref": "../../../components/dead-host-object.json#/properties/advanced_config"
- },
- "meta": {
- "$ref": "../../../components/dead-host-object.json#/properties/meta"
- }
- }
- },
- "example": {
- "domain_names": [
- "test.example.com"
- ],
- "certificate_id": 0,
- "ssl_forced": false,
- "advanced_config": "",
- "http2_support": false,
- "hsts_enabled": false,
- "hsts_subdomains": false,
- "meta": {}
- }
- }
- }
- },
- "responses": {
- "201": {
- "description": "201 response",
- "content": {
- "application/json": {
- "examples": {
- "default": {
- "value": {
- "id": 1,
- "created_on": "2024-10-09T01:38:52.000Z",
- "modified_on": "2024-10-09T01:38:52.000Z",
- "owner_user_id": 1,
- "domain_names": [
- "test.example.com"
- ],
- "certificate_id": 0,
- "ssl_forced": false,
- "advanced_config": "",
- "meta": {},
- "http2_support": false,
- "enabled": true,
- "hsts_enabled": false,
- "hsts_subdomains": false,
- "certificate": null,
- "owner": {
- "id": 1,
- "created_on": "2024-10-09T00:59:56.000Z",
- "modified_on": "2024-10-09T00:59:56.000Z",
- "is_disabled": false,
- "email": "[email protected]",
- "name": "Administrator",
- "nickname": "Admin",
- "avatar": "",
- "roles": [
- "admin"
- ]
- }
- }
- }
- },
- "schema": {
- "$ref": "../../../components/dead-host-object.json"
- }
- }
- }
- }
- }
- }
|