introduce OCIS_INSECURE option

This commit is contained in:
Willy Kloucek committed 2021-11-10 16:55:12 +01:00
1 parent a6b2ea9895
commit 6590565a2f
20 files changed
+34 -103

No files matched your search

+7 -1
View File
@@ -1,4 +1,4 @@
Enhancement: Make insecure options configurable
Change: Make insecure options configurable
We had several hard-coded 'insecure' flags. These options are now configurable and default to false. Also we changed all other 'insecure' flags with a previous default of true to false. In development environments using self signed certs (the default) you need to set these flags:
@@ -15,5 +15,11 @@ THUMBNAILS_CS3SOURCE_INSECURE=true
THUMBNAILS_WEBDAVSOURCE_INSECURE=true
```
As an alternative you also can set a single flag, which configures all options together:
```
OCIS_INSECURE=true
```
https://github.com/owncloud/ocis/issues/2700
https://github.com/owncloud/ocis/pull/2745