Sha256: 32d18a7e66a5dc82702c237107da9f12192039aafa56171646789b9782f441c7
Contents?: true
Size: 702 Bytes
Versions: 5
Compression:
Stored size: 702 Bytes
Contents
require 'foreman/util' namespace :security do desc 'Generate new security token' task :generate_token do include Foreman::Util File.open("config/initializers/local_secret_token.rb", "w") do |fd| fd.write("# Be sure to restart your server when you modify this file. # Your secret key for verifying the integrity of signed cookies. # If you change this key, all old signed cookies will become invalid! # Make sure the secret is at least 30 characters and all random, # no regular words or you'll be exposed to dictionary attacks. # You can use `rake security:generate_token` to regenerate this file. Foreman::Application.config.secret_token = '#{secure_token}' ") end end end
Version data entries
5 entries across 5 versions & 1 rubygems