Skip to content

Commit

Permalink
toml: add insecure = true to configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
amalthundiyil committed May 9, 2022
1 parent be5ab2e commit f115e75
Show file tree
Hide file tree
Showing 21 changed files with 63 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/datatx/datatx.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

# example data transfer service configuration
[grpc.services.datatx]
# rclone is the default data transfer driver
Expand Down
3 changes: 3 additions & 0 deletions examples/mentix/mentix.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[http]
address = "0.0.0.0:9600"

Expand Down
3 changes: 3 additions & 0 deletions examples/meshdirectory/meshdirectory.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

# services to enable
[grpc.services.gateway]
[grpc.services.storageregistry]
Expand Down
3 changes: 3 additions & 0 deletions examples/metrics/xcloud.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[http]
address = "0.0.0.0:5550"

Expand Down
3 changes: 3 additions & 0 deletions examples/siteacc/siteacc.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[http]
address = "0.0.0.0:9600"

Expand Down
3 changes: 3 additions & 0 deletions examples/standalone/standalone.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

# services to enable
[grpc.services.gateway]
[grpc.services.storageregistry]
Expand Down
3 changes: 3 additions & 0 deletions examples/storage-references/applicationauth.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:15000"

Expand Down
3 changes: 3 additions & 0 deletions examples/storage-references/gateway.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

# services to enable
[grpc.services.gateway]
commit_share_to_storage_grant = true
Expand Down
3 changes: 3 additions & 0 deletions examples/storage-references/storage-home.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:17000"

Expand Down
3 changes: 3 additions & 0 deletions examples/storage-references/storage-public.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:16000"

Expand Down
3 changes: 3 additions & 0 deletions examples/storage-references/storage-reva.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:18000"

Expand Down
3 changes: 3 additions & 0 deletions examples/two-server-setup/gateway-1.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:19000"

Expand Down
3 changes: 3 additions & 0 deletions examples/two-server-setup/storage-home-1.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:17000"

Expand Down
3 changes: 3 additions & 0 deletions examples/two-server-setup/storage-home-2.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:27000"

Expand Down
3 changes: 3 additions & 0 deletions examples/two-server-setup/storage-reva-1.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:18000"

Expand Down
3 changes: 3 additions & 0 deletions examples/two-server-setup/storage-reva-2.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "0.0.0.0:28000"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "{{grpc_address}}"

Expand Down
3 changes: 3 additions & 0 deletions tests/integration/grpc/fixtures/storageprovider-ocis.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "{{grpc_address}}"

Expand Down
3 changes: 3 additions & 0 deletions tests/integration/grpc/fixtures/storageprovider-owncloud.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "{{grpc_address}}"

Expand Down
3 changes: 3 additions & 0 deletions tests/integration/grpc/fixtures/userprovider-demo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "{{grpc_address}}"

Expand Down
3 changes: 3 additions & 0 deletions tests/integration/grpc/fixtures/userprovider-json.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[shared]
insecure = true

[grpc]
address = "{{grpc_address}}"

Expand Down

0 comments on commit f115e75

Please sign in to comment.