chore(apps): move icons into the apps folder (#3139)

* chore(apps): move icons into the apps folder

* rename to `icon.png`

* replace solr image

* remove `docs/` from gitignore

* move app specific docs into app folder [skip ci]

* fix some links

* chore(apps): update image links temporary
This commit is contained in:
Stavros Kois
2022-07-11 17:09:18 +02:00
committed by GitHub
parent 93e4ea646d
commit 4ad582d87f
737 changed files with 685 additions and 354 deletions
@@ -0,0 +1,8 @@
# Installation Notes
* If you don't enable `Reverse Proxy` on `Collabora` (It's not recommended as it is unsecure), in order for it to work you have to
* Remove `-o:ssl.termination=true -o:ssl.enable=false` from `Extra Parameters`.
* Set `Server Name` to `hostIP:port` (The port number you set for `NodePort`)
* Set `Service type` to `NodePort`
* Set `Port type` to `HTTPS`
* Disable certificate validation in the app you are going to use it. (eg. Nextcloud have a checkbox under Collabora's URL to disable Cert Validtation)
@@ -0,0 +1,24 @@
# Input Validation
__`Server Name`__
Accepted formats are:
- Single FQDN (eg. `collabora.mydomain.com` or `mydomain.com`)
- Single IP (eg. `10.10.10.11`)
_Same rules apply for FQDN as in the section above_
Regex used to match this: `^((([a-z\d](-?[a-z\d]){0,62})\.)*(([a-z\d](-?[a-z\d]){0,62})\.)([a-z](-?[a-z\d]){1,62})|((\d{1,3}\.){3}\d{1,3}))$`
You can try live [here](https://regex101.com/r/mICKDp/1)
__`Password for WebUI`__
Accepted formats are:
- Letters, Numbers, Symbols, Minimum 8 characters (eg. `dg523$*a`) - It accepts `a-z`, `A-Z`, `0-9` and `!@#$%^&*?`
Regex used to match those: `[a-zA-Z0-9!@#$%^&*?]{8,}`
You can try live [here](https://regex101.com/r/ef3V88/1)
---
_If you find a field that you think it needs validation, please open an issue on github_