action apache_get_config { label: "Get current configuration" provider: apache method: GET path: "/config" encoding: json output: { type: "object" description: "The configuration." properties: { sections: { type: "array" items: { type: "object" description: "The section of configuration." properties: { name: { type: "string" } options: { type: "array" items: { type: "object" description: "The option of configuration." properties: { key: { type: "string" } value: { type: "string" } } } } } } } } } }