{ "type": "object", "$schema": "http://json-schema.org/draft-04/schema", "title": "Input Parameters", "properties": { "url": { "title": "Backend URL", "description": "Url of the backend", "type": "string" }, "custom_domain": { "title": "Custom Domain", "description": "Custom Domain to use for the website", "type": "string", "pattern": "^([a-zA-Z0-9]([a-zA-Z0-9\\-]{0,61}[a-zA-Z0-9])?\\.)+[a-zA-Z]{2,6}$" }, "server-alias": { "title": "Server Alias", "description": "Server Alias List separated by space", "type": "string", "default": "" }, "type": { "title": "Backend Type", "description": "Type of slave. If redirect, the slave will redirect to the given url. If zope, the rewrite rules will be compatible with Virtual Host Monster", "type": "string", "default": "", "enum": ["", "zope", "redirect"] }, "path": { "title": "Backend Path", "description": "Path to proxy to in the backend", "type": "string", "default": "" }, "default-path": { "title": "Default Path", "description": "Provide default path to redirect user to", "type": "string", "default": "" }, "ssl_crt": { "title": "SSL Certificate", "description": "SSL Certificate", "type": "string", "default": "" }, "ssl_key": { "title": "SSL Key", "description": "SSL Key", "type": "string", "default": "" }, "ssl_ca_crt": { "title": "SSL Certificate Authority's Certificate", "description": "SSL Key", "type": "string", "default": "" }, "https-only": { "title": "HTTPS Only", "description": "If set to true, http request are redirect to https", "type": "string", "default": "false", "enum": ["false", "true"] }, "enable_cache": { "title": "Enable Cache", "description": "If set to true, the cache is used", "type": "string", "default": "false", "enum": ["false", "true"] }, "disable-no-cache-request": { "title": "Disable 'no-cache' requests", "description": "If set to true, no-cache control headers will be disabled", "type": "string", "default": "false", "enum": ["false", "true"] }, "prefer-gzip-encoding-to-backend": { "title": "Prefer gzip Encoding for Backend", "description": "If set to true, if a request is made with accept encoding 'gzip', only that one will be transferred to the backend", "type": "string", "default": "false", "enum": ["false", "true"] }, "disabled-cookie-list": { "title": "Disabled Cookies", "description": "List of Cookies separated by space that will not be sent to the backend", "type": "string", "default": "" }, "apache_custom_http": { "title": "HTTP configuration", "description": "Raw http configuration in python template format. Your site will be rejected if you use it without notification and approval of the frontend adminastrator", "default": "", "type": "string" }, "apache_custom_https": { "title": "HTTPS configuration", "description": "Raw https configuration in python template format. Your site will be rejected if you use it without notification and approval of the frontend adminastrator", "default": "", "type": "string" } } }