Skip to content

Commit

Permalink
remove port numbers from code
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Nov 14, 2024
1 parent f9abc9c commit f1cd0d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/application.ex
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ defmodule CA do
{ CA.CMC, port: Application.fetch_env!(:ca, :cmc) },
{ CA.OCSP, port: Application.fetch_env!(:ca, :ocsp) },
{ CA.TSP, port: Application.fetch_env!(:ca, :tsp) },
{ CA.EST, port: Application.fetch_env!(:ca, :est), plug: CA.EST, scheme: :http, thousand_island_options: [num_acceptors: 1] }
{ CA.EST, port: Application.fetch_env!(:ca, :est), plug: CA.EST,
scheme: :http, thousand_island_options: [num_acceptors: 1] }
], strategy: :one_for_one, name: CA.Supervisor)
end

Expand Down

0 comments on commit f1cd0d0

Please sign in to comment.