Skip to content

Commit 5639996

Browse files
author
Alan Scherger
committed
disable ssl
1 parent b820ba0 commit 5639996

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

client/src/main/java/io/netifi/proteus/quickstart/client/Main.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public static void main(String... args) {
2525
.accessToken("kTBDVtfRBO4tHOnZzSyY5ym2kfY=")
2626
.host("localhost") // Proteus Broker Host
2727
.port(8001) // Proteus Broker Port
28+
.disableSsl() // Disabled for parity with Javascript Tutorial
2829
.build();
2930

3031
// Connect to Netifi Proteus Platform

docker-compose.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@ services:
99
- netifi
1010
environment:
1111
BROKER_SERVER_OPTS: >
12+
'-Dnetifi.broker.console.enabled=true'
13+
'-Dnetifi.broker.ssl.disabled=true'
1214
'-Dnetifi.authentication.0.accessKey=9007199254740991'
1315
'-Dnetifi.authentication.0.accessToken=kTBDVtfRBO4tHOnZzSyY5ym2kfY='
1416
'-Dnetifi.broker.admin.accessKey=9007199254740991'
1517
'-Dnetifi.broker.admin.accessToken=kTBDVtfRBO4tHOnZzSyY5ym2kfY='
16-
'-Dnetifi.broker.console.enabled=true'
1718
ports:
1819
- "7001:7001"
1920
- "8001:8001"
21+
- "8101:8101"
2022
- "9000:9000"
2123
networks:
2224
netifi:

service/src/main/java/io/netifi/proteus/quickstart/service/Main.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public static void main(String... args) throws Exception {
2222
.accessToken("kTBDVtfRBO4tHOnZzSyY5ym2kfY=")
2323
.host("localhost") // Proteus Broker Host
2424
.port(8001) // Proteus Broker Port
25+
.disableSsl() // Disabled for parity with Javascript Tutorial
2526
.build();
2627

2728
// Add Service to Respond to Requests

0 commit comments

Comments
 (0)