diff options
author | Sachin Joshi <satchin.joshi@gmail.com> | 2019-07-10 01:42:41 +0545 |
---|---|---|
committer | Sachin Joshi <satchin.joshi@gmail.com> | 2019-07-10 01:46:49 +0545 |
commit | 6d0ae264fc90508a6df39f77a11d1d8069bfa466 (patch) | |
tree | 70ffdd923998249d5e14ba4fb2a4d13e180a744a /priv/templates | |
parent | 670a77ecbc94d57c6ecb5e569597e81cee4b5532 (diff) | |
download | pleroma-6d0ae264fc90508a6df39f77a11d1d8069bfa466.tar.gz pleroma-6d0ae264fc90508a6df39f77a11d1d8069bfa466.zip |
add listener port and ip option for 'pleroma.instance gen' and enable its test
Diffstat (limited to 'priv/templates')
-rw-r--r-- | priv/templates/sample_config.eex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/priv/templates/sample_config.eex b/priv/templates/sample_config.eex index 5cc31c604..ca9c7a2c2 100644 --- a/priv/templates/sample_config.eex +++ b/priv/templates/sample_config.eex @@ -11,6 +11,7 @@ end %> config :pleroma, Pleroma.Web.Endpoint, url: [host: "<%= domain %>", scheme: "https", port: <%= port %>], + http: [ip: {<%= String.replace(listen_ip, ".", ", ") %>}, port: <%= listen_port %>], secret_key_base: "<%= secret %>", signing_salt: "<%= signing_salt %>" |