-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from compgeniuses/perm
Perm
- Loading branch information
Showing
3 changed files
with
46 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,36 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "configure-module input", | ||
"$id": "http://schema.nethserver.org/sogo/configure-module-input.json", | ||
"description": "Configure paperless", | ||
"title": "Get kickstart settings", | ||
"$id": "http://nethserver.org/json-schema/task/input/kickstart/get-configuration", | ||
"description": "Get kickstart settings", | ||
"examples": [ | ||
{ | ||
|
||
"host": "b8n.host.com", | ||
"PHP_ENABLE_OPCACHE": "mysql", | ||
"PHP_MEMORY_LIMIT": "mysql" | ||
"host": "kickstart.domain.org", | ||
"http2https": true, | ||
"lets_encrypt": true | ||
} | ||
], | ||
"type": "object", | ||
"required": [ | ||
"host", | ||
"http2https", | ||
"lets_encrypt" | ||
], | ||
"properties": { | ||
"host": { | ||
"type": "string" | ||
}, | ||
"POSTGRES_DB": { | ||
"type": "string" | ||
"type": "string", | ||
"description": "Host name for the application, like 'kickstart.domain.org'", | ||
"format": "idn-hostname" | ||
}, | ||
"POSTGRES_USER": { | ||
"type": "string" | ||
"lets_encrypt": { | ||
"type": "boolean", | ||
"title": "Let's Encrypt certificate", | ||
"description": "Request a valid Let's Encrypt certificate." | ||
}, | ||
"POSTGRES_PASSWORD": { | ||
"type": "string" | ||
}, | ||
"PHP_ENABLE_OPCACHE": { | ||
"type": "boolean" | ||
}, | ||
"PHP_MEMORY_LIMIT": { | ||
"type": "string" | ||
"http2https": { | ||
"type": "boolean", | ||
"title": "HTTP to HTTPS redirection", | ||
"description": "Redirect all the HTTP requests to HTTPS" | ||
} | ||
|
||
|
||
}, | ||
"required": [ | ||
"host" | ||
|
||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,36 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "configure-module input", | ||
"$id": "http://schema.nethserver.org/sogo/configure-module-input.json", | ||
"description": "Configure paperless", | ||
"title": "Get kickstart settings", | ||
"$id": "http://nethserver.org/json-schema/task/input/kickstart/get-configuration", | ||
"description": "Get kickstart settings", | ||
"examples": [ | ||
{ | ||
"host": "host.n8n.tld", | ||
"PHP_ENABLE_OPCACHE": "mysql", | ||
"PHP_MEMORY_LIMIT": "mysql" | ||
"host": "kickstart.domain.org", | ||
"http2https": true, | ||
"lets_encrypt": true | ||
} | ||
], | ||
"type": "object", | ||
"required": [ | ||
"host", | ||
"http2https", | ||
"lets_encrypt" | ||
], | ||
"properties": { | ||
"host": { | ||
"type": "string" | ||
"type": "string", | ||
"description": "Host name for the application, like 'kickstart.domain.org'", | ||
"format": "idn-hostname" | ||
}, | ||
"PHP_ENABLE_OPCACHE": { | ||
"type": "boolean" | ||
"lets_encrypt": { | ||
"type": "boolean", | ||
"title": "Let's Encrypt certificate", | ||
"description": "Request a valid Let's Encrypt certificate." | ||
}, | ||
"PHP_MEMORY_LIMIT": { | ||
"type": "string" | ||
"http2https": { | ||
"type": "boolean", | ||
"title": "HTTP to HTTPS redirection", | ||
"description": "Redirect all the HTTP requests to HTTPS" | ||
} | ||
|
||
|
||
}, | ||
"required": [ | ||
"host" | ||
] | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.