123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652 |
- {
- "1.2.6": {
- "healthy": true,
- "supported": true,
- "healthy_error": null,
- "location": "/__w/apps/apps/trains/community/webdav/1.2.6",
- "last_update": "2025-09-02 11:33:24",
- "required_features": [],
- "human_version": "2.4.65_1.2.6",
- "version": "1.2.6",
- "app_metadata": {
- "annotations": {
- "min_scale_version": "24.10.2.2"
- },
- "app_version": "2.4.65",
- "capabilities": [],
- "categories": [
- "storage"
- ],
- "date_added": "2024-08-27",
- "description": "WebDAV is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.",
- "home": "http://www.webdav.org/",
- "host_mounts": [],
- "icon": "https://media.sys.truenas.net/apps/webdav/icons/icon.png",
- "keywords": [
- "webdav",
- "file-sharing"
- ],
- "lib_version": "2.1.49",
- "lib_version_hash": "e71e6b0122c9446fa5ea6fb07e7eb01b11fb42d549a19845426bbd7e21a42634",
- "maintainers": [
- {
- "email": "dev@ixsystems.com",
- "name": "truenas",
- "url": "https://www.truenas.com/"
- }
- ],
- "name": "webdav",
- "run_as_context": [
- {
- "description": "WebDAV runs as any non-root user.",
- "gid": 568,
- "group_name": "webdav",
- "uid": 568,
- "user_name": "webdav"
- }
- ],
- "screenshots": [],
- "sources": [
- "http://www.webdav.org/"
- ],
- "title": "WebDAV",
- "train": "community",
- "version": "1.2.6"
- },
- "schema": {
- "groups": [
- {
- "name": "WebDAV Configuration",
- "description": "Configure WebDAV"
- },
- {
- "name": "User and Group Configuration",
- "description": "Configure User and Group for WebDAV"
- },
- {
- "name": "Network Configuration",
- "description": "Configure Network for WebDAV"
- },
- {
- "name": "Storage Configuration",
- "description": "Configure Storage for WebDAV"
- },
- {
- "name": "Labels Configuration",
- "description": "Configure Labels for WebDAV"
- },
- {
- "name": "Resources Configuration",
- "description": "Configure Resources for WebDAV"
- }
- ],
- "questions": [
- {
- "variable": "webdav",
- "label": "",
- "group": "WebDAV Configuration",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "auth_type",
- "label": "Authentication Type",
- "description": "The type of authentication to use for WebDAV.",
- "schema": {
- "type": "string",
- "default": "none",
- "required": true,
- "enum": [
- {
- "value": "none",
- "description": "No authentication"
- },
- {
- "value": "basic",
- "description": "Basic authentication"
- }
- ]
- }
- },
- {
- "variable": "username",
- "label": "Username",
- "description": "The username to use for WebDAV.",
- "schema": {
- "type": "string",
- "default": "",
- "show_if": [
- [
- "auth_type",
- "=",
- "basic"
- ]
- ],
- "required": true
- }
- },
- {
- "variable": "password",
- "label": "Password",
- "description": "The password to use for WebDAV.",
- "schema": {
- "type": "string",
- "default": "",
- "show_if": [
- [
- "auth_type",
- "=",
- "basic"
- ]
- ],
- "private": true,
- "required": true
- }
- },
- {
- "variable": "additional_browser_matches",
- "label": "Additional Browser Matches",
- "description": "Additional browser matches for WebDAV.</br>\nThis is useful if you want to use WebDAV with a browser\nthat is not supported by the default configuration.</br>\nExample: \"^some-regex\" </br>\nThis will create the following line in the configuration file:</br>\nBrowserMatch \"^some-regex\" redirect-carefully\n",
- "schema": {
- "type": "list",
- "default": [],
- "items": [
- {
- "variable": "match",
- "label": "Match",
- "schema": {
- "type": "string",
- "required": true
- }
- }
- ]
- }
- },
- {
- "variable": "additional_envs",
- "label": "Additional Environment Variables",
- "schema": {
- "type": "list",
- "default": [],
- "items": [
- {
- "variable": "env",
- "label": "Environment Variable",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "name",
- "label": "Name",
- "schema": {
- "type": "string",
- "required": true
- }
- },
- {
- "variable": "value",
- "label": "Value",
- "schema": {
- "type": "string"
- }
- }
- ]
- }
- }
- ]
- }
- }
- ]
- }
- },
- {
- "variable": "run_as",
- "label": "",
- "group": "User and Group Configuration",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "user",
- "label": "User ID",
- "description": "The user id that WebDAV files will be owned by.",
- "schema": {
- "type": "int",
- "min": 2,
- "default": 666,
- "required": true
- }
- },
- {
- "variable": "group",
- "label": "Group ID",
- "description": "The group id that WebDAV files will be owned by.",
- "schema": {
- "type": "int",
- "min": 2,
- "default": 666,
- "required": true
- }
- }
- ]
- }
- },
- {
- "variable": "network",
- "label": "",
- "group": "Network Configuration",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "http_port",
- "label": "HTTP Port",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "bind_mode",
- "label": "Port Bind Mode",
- "description": "The port bind mode.</br>\n- Publish: The port will be published on the host for external access.</br>\n- Expose: The port will be exposed for inter-container communication.</br>\n- None: The port will not be exposed or published.</br>\nNote: If the Dockerfile defines an EXPOSE directive,\nthe port will still be exposed for inter-container communication regardless of this setting.\n",
- "schema": {
- "type": "string",
- "default": "published",
- "enum": [
- {
- "value": "published",
- "description": "Publish port on the host for external access"
- },
- {
- "value": "exposed",
- "description": "Expose port for inter-container communication"
- },
- {
- "value": "",
- "description": "None"
- }
- ]
- }
- },
- {
- "variable": "port_number",
- "label": "Port Number",
- "schema": {
- "type": "int",
- "default": 30035,
- "min": 1,
- "max": 65535,
- "required": true
- }
- },
- {
- "variable": "host_ips",
- "label": "Host IPs",
- "description": "IPs on the host to bind this port",
- "schema": {
- "type": "list",
- "show_if": [
- [
- "bind_mode",
- "=",
- "published"
- ]
- ],
- "default": [],
- "items": [
- {
- "variable": "host_ip",
- "label": "Host IP",
- "schema": {
- "type": "string",
- "required": true,
- "$ref": [
- "definitions/node_bind_ip"
- ]
- }
- }
- ]
- }
- }
- ]
- }
- },
- {
- "variable": "https_port",
- "label": "HTTPS Port",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "bind_mode",
- "label": "Port Bind Mode",
- "description": "The port bind mode.</br>\n- Publish: The port will be published on the host for external access.</br>\n- Expose: The port will be exposed for inter-container communication.</br>\n- None: The port will not be exposed or published.</br>\nNote: If the Dockerfile defines an EXPOSE directive,\nthe port will still be exposed for inter-container communication regardless of this setting.\n",
- "schema": {
- "type": "string",
- "default": "",
- "enum": [
- {
- "value": "published",
- "description": "Publish port on the host for external access"
- },
- {
- "value": "exposed",
- "description": "Expose port for inter-container communication"
- },
- {
- "value": "",
- "description": "None"
- }
- ]
- }
- },
- {
- "variable": "port_number",
- "label": "Port Number",
- "schema": {
- "type": "int",
- "default": 30036,
- "min": 1,
- "max": 65535,
- "required": true
- }
- },
- {
- "variable": "host_ips",
- "label": "Host IPs",
- "description": "IPs on the host to bind this port",
- "schema": {
- "type": "list",
- "show_if": [
- [
- "bind_mode",
- "=",
- "published"
- ]
- ],
- "default": [],
- "items": [
- {
- "variable": "host_ip",
- "label": "Host IP",
- "schema": {
- "type": "string",
- "required": true,
- "$ref": [
- "definitions/node_bind_ip"
- ]
- }
- }
- ]
- }
- }
- ]
- }
- },
- {
- "variable": "certificate_id",
- "label": "Certificate",
- "description": "The certificate to use for WebDAV.",
- "schema": {
- "type": "int",
- "null": true,
- "$ref": [
- "definitions/certificate"
- ]
- }
- },
- {
- "variable": "host_network",
- "label": "Host Network",
- "description": "Bind to the host network. It's recommended to keep this disabled.\n",
- "schema": {
- "type": "boolean",
- "default": false
- }
- }
- ]
- }
- },
- {
- "variable": "storage",
- "label": "",
- "group": "Storage Configuration",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "shares",
- "label": "Shares",
- "description": "The shares to use for WebDAV.",
- "schema": {
- "type": "list",
- "default": [],
- "items": [
- {
- "variable": "share_entry",
- "label": "Share Entry",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "enabled",
- "label": "Enable the share",
- "description": "Enable the share.",
- "schema": {
- "type": "boolean",
- "default": true
- }
- },
- {
- "variable": "name",
- "label": "Share Name",
- "description": "The name of the share.</br>\nAlso serves as the endpoint for the share.</br>\nExample: [share1] will be available at [http://<webdav-ip>:<webdav-port>/share1]\n",
- "schema": {
- "type": "string",
- "valid_chars": "^[a-zA-Z0-9_-]+$",
- "valid_chars_error": "Share name can only consist of [Letters(a-z, A-Z), Numbers(0-9), Underscores(_), Dashes(-)]",
- "required": true
- }
- },
- {
- "variable": "description",
- "label": "Description",
- "description": "Share description. Only used for documentation.",
- "schema": {
- "type": "string"
- }
- },
- {
- "variable": "host_path",
- "label": "Host Path",
- "description": "The host path to use for the share.",
- "schema": {
- "type": "hostpath",
- "required": true
- }
- },
- {
- "variable": "read_only",
- "label": "Read Only",
- "description": "Enable read only access to the share.</br>\nThis will disable write access to the share.</br>\nData will be mounted as read only.\n",
- "schema": {
- "type": "boolean",
- "default": false
- }
- },
- {
- "variable": "max_request_body_size_gb",
- "label": "Max Request Body Size (in GB)",
- "description": "The maximum size of the request body in GB.\nIf the request body size exceeds this value, the request will fail.\nValue of 0 means no limit.\n",
- "schema": {
- "type": "int",
- "default": 1
- }
- },
- {
- "variable": "fix_permissions",
- "label": "Fix Permissions",
- "description": "Enable permission fix for the share.</br>\nThis will fix the permissions of the share on startup.</br>\nThis will change the owner of the share to the user and group specified in [User and Group Configuration].</br>\nNote: This will still change permissions even if [Read Only] for the share is enabled.\n",
- "schema": {
- "type": "boolean",
- "default": false
- }
- }
- ]
- }
- }
- ]
- }
- }
- ]
- }
- },
- {
- "variable": "labels",
- "label": "",
- "group": "Labels Configuration",
- "schema": {
- "type": "list",
- "default": [],
- "items": [
- {
- "variable": "label",
- "label": "Label",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "key",
- "label": "Key",
- "schema": {
- "type": "string",
- "required": true
- }
- },
- {
- "variable": "value",
- "label": "Value",
- "schema": {
- "type": "string",
- "required": true
- }
- },
- {
- "variable": "containers",
- "label": "Containers",
- "description": "Containers where the label should be applied",
- "schema": {
- "type": "list",
- "items": [
- {
- "variable": "container",
- "label": "Container",
- "schema": {
- "type": "string",
- "required": true,
- "enum": [
- {
- "value": "webdav",
- "description": "webdav"
- }
- ]
- }
- }
- ]
- }
- }
- ]
- }
- }
- ]
- }
- },
- {
- "variable": "resources",
- "label": "",
- "group": "Resources Configuration",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "limits",
- "label": "Limits",
- "schema": {
- "type": "dict",
- "attrs": [
- {
- "variable": "cpus",
- "label": "CPUs",
- "description": "CPUs limit for WebDAV.",
- "schema": {
- "type": "int",
- "default": 2,
- "required": true
- }
- },
- {
- "variable": "memory",
- "label": "Memory (in MB)",
- "description": "Memory limit for WebDAV.",
- "schema": {
- "type": "int",
- "default": 4096,
- "required": true
- }
- }
- ]
- }
- }
- ]
- }
- }
- ]
- },
- "readme": "<h1>WebDAV</h1> <p><a href=\"http://webdav.org/\">WebDAV</a> is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.</p>",
- "changelog": null,
- "chart_metadata": {
- "annotations": {
- "min_scale_version": "24.10.2.2"
- },
- "app_version": "2.4.65",
- "capabilities": [],
- "categories": [
- "storage"
- ],
- "date_added": "2024-08-27",
- "description": "WebDAV is a set of extensions to the HTTP protocol which allows users to collaboratively edit and manage files on remote web servers.",
- "home": "http://www.webdav.org/",
- "host_mounts": [],
- "icon": "https://media.sys.truenas.net/apps/webdav/icons/icon.png",
- "keywords": [
- "webdav",
- "file-sharing"
- ],
- "lib_version": "2.1.49",
- "lib_version_hash": "e71e6b0122c9446fa5ea6fb07e7eb01b11fb42d549a19845426bbd7e21a42634",
- "maintainers": [
- {
- "email": "dev@ixsystems.com",
- "name": "truenas",
- "url": "https://www.truenas.com/"
- }
- ],
- "name": "webdav",
- "run_as_context": [
- {
- "description": "WebDAV runs as any non-root user.",
- "gid": 568,
- "group_name": "webdav",
- "uid": 568,
- "user_name": "webdav"
- }
- ],
- "screenshots": [],
- "sources": [
- "http://www.webdav.org/"
- ],
- "title": "WebDAV",
- "train": "community",
- "version": "1.2.6"
- }
- }
- }
|