forked from AkkomaGang/akkoma
Allow port specification in instance.ex
This commit is contained in:
parent
e74f384b68
commit
4a895a46d1
2 changed files with 11 additions and 7 deletions
|
@ -58,12 +58,15 @@ def run(["gen" | rest]) do
|
||||||
proceed? = Enum.empty?(will_overwrite) or Keyword.get(options, :force, false)
|
proceed? = Enum.empty?(will_overwrite) or Keyword.get(options, :force, false)
|
||||||
|
|
||||||
unless not proceed? do
|
unless not proceed? do
|
||||||
domain =
|
[domain, port | _] =
|
||||||
Common.get_option(
|
String.split(
|
||||||
options,
|
Common.get_option(
|
||||||
:domain,
|
options,
|
||||||
"What domain will your instance use? (e.g pleroma.soykaf.com)"
|
:domain,
|
||||||
)
|
"What domain will your instance use? (e.g pleroma.soykaf.com)"
|
||||||
|
),
|
||||||
|
":"
|
||||||
|
) ++ [443]
|
||||||
|
|
||||||
name =
|
name =
|
||||||
Common.get_option(
|
Common.get_option(
|
||||||
|
@ -104,6 +107,7 @@ def run(["gen" | rest]) do
|
||||||
EEx.eval_file(
|
EEx.eval_file(
|
||||||
"sample_config.eex" |> Path.expand(__DIR__),
|
"sample_config.eex" |> Path.expand(__DIR__),
|
||||||
domain: domain,
|
domain: domain,
|
||||||
|
port: port,
|
||||||
email: email,
|
email: email,
|
||||||
name: name,
|
name: name,
|
||||||
dbhost: dbhost,
|
dbhost: dbhost,
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
use Mix.Config
|
use Mix.Config
|
||||||
|
|
||||||
config :pleroma, Pleroma.Web.Endpoint,
|
config :pleroma, Pleroma.Web.Endpoint,
|
||||||
url: [host: "<%= domain %>", scheme: "https", port: 443],
|
url: [host: "<%= domain %>", scheme: "https", port: <%= port %>],
|
||||||
secret_key_base: "<%= secret %>"
|
secret_key_base: "<%= secret %>"
|
||||||
|
|
||||||
config :pleroma, :instance,
|
config :pleroma, :instance,
|
||||||
|
|
Loading…
Reference in a new issue