Skip to content

Commit

Permalink
Fix errors in dev.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcarstens committed Feb 1, 2021
1 parent a31e75f commit 50f0284
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions config/dev.exs
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
import Config

# Shared Configuration.
config :nerves_hub_link,
ca_certs: Path.expand("../ssl/dev", __DIR__)
ca_certs = Path.expand("../ssl/dev", __DIR__)

# API HTTP connection.
config :nerves_hub_user_api,
ca_certs: ca_certs,
host: "0.0.0.0",
port: 4002,
server_name_indication: 'api.nerves-hub.org',
ca_certs: Path.expand("../ssl/dev", __DIR__)
server_name_indication: 'api.nerves-hub.org'

# Device HTTP connection.
config :nerves_hub_link,
ca_certs: ca_certs,
device_api_host: "0.0.0.0",
device_api_port: 4001,
server_name_indication: 'api.nerves-hub.org'
ssl: [server_name_indication: 'device.nerves-hub.org']

0 comments on commit 50f0284

Please sign in to comment.