diff options
author | Rin Toshaka <rinpatch@sdf.org> | 2018-12-06 18:11:22 +0100 |
---|---|---|
committer | Rin Toshaka <rinpatch@sdf.org> | 2018-12-06 18:11:22 +0100 |
commit | 88f92693f25c34f8ab82d4ed809b266bf5fb9ff8 (patch) | |
tree | d6115e451d0cd98672669c6ba93921f75f21e16a /lib/mix/tasks | |
parent | ca7b46fb3ba576fb7e67eba02654e6df9299392a (diff) | |
parent | 1d531fd2f32a7f8fff562a3122b30b8ccdccead0 (diff) | |
download | pleroma-88f92693f25c34f8ab82d4ed809b266bf5fb9ff8.tar.gz |
Merge develop
Diffstat (limited to 'lib/mix/tasks')
-rw-r--r-- | lib/mix/tasks/pleroma/sample_config.eex | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/mix/tasks/pleroma/sample_config.eex b/lib/mix/tasks/pleroma/sample_config.eex index df9d1ad65..0cd572797 100644 --- a/lib/mix/tasks/pleroma/sample_config.eex +++ b/lib/mix/tasks/pleroma/sample_config.eex @@ -29,6 +29,12 @@ config :pleroma, Pleroma.Repo, hostname: "<%= dbhost %>", pool_size: 10 +# Configure web push notifications +config :web_push_encryption, :vapid_details, + subject: "mailto:<%= email %>", + public_key: "<%= web_push_public_key %>", + private_key: "<%= web_push_private_key %>" + # Enable Strict-Transport-Security once SSL is working: # config :pleroma, :http_security, # sts: true @@ -54,9 +60,9 @@ config :pleroma, Pleroma.Repo, # Configure Openstack Swift support if desired. -# -# Many openstack deployments are different, so config is left very open with -# no assumptions made on which provider you're using. This should allow very +# +# Many openstack deployments are different, so config is left very open with +# no assumptions made on which provider you're using. This should allow very # wide support without needing separate handlers for OVH, Rackspace, etc. # # config :pleroma, Pleroma.Uploaders.Swift, |