The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
790 B

  1. # frozen_string_literal: true
  2. Rails.application.configure do
  3. # You can generate the keys using the following command (first is the private key, second is the public one)
  4. # You should only generate this once per instance. If you later decide to change it, all push subscription will
  5. # be invalidated, requiring the users to access the website again to resubscribe.
  6. #
  7. # Generate with `rake mastodon:webpush:generate_vapid_key` task (`docker-compose run --rm web rake mastodon:webpush:generate_vapid_key` if you use docker compose)
  8. #
  9. # For more information visit https://rossta.net/blog/using-the-web-push-api-with-vapid.html
  10. if Rails.env.production?
  11. config.x.vapid_private_key = ENV['VAPID_PRIVATE_KEY']
  12. config.x.vapid_public_key = ENV['VAPID_PUBLIC_KEY']
  13. end
  14. end