Last active
March 28, 2017 11:01
-
-
Save michon/e3bae20ab9a1acd16f53dd80c259fe68 to your computer and use it in GitHub Desktop.
Revisions
-
michon revised this gist
Mar 28, 2017 . 1 changed file with 13 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,7 +16,7 @@ :enable_starttls_auto => false, :tls => true, :openssl_verify_mode => 'none', :password => 'G6XsjbGX'} @@ -30,7 +30,11 @@ config.consider_all_requests_local = false config.action_controller.perform_caching = true config.serve_static_files = true @@ -69,4 +73,10 @@ config.log_formatter = ::Logger::Formatter.new config.active_record.dump_schema_after_migration = false config.action_controller.asset_host = "http://dechado13.softgalia.com/" config.asset_host ="http://dechado13.softgalia.com/" config.assets.initialize_on_precompile = true config.assets.compile = true config.action_controller.perform_caching = true end -
michon created this gist
Mar 28, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,72 @@ Rails.application.configure do #==Configuracion de Action mailer. config.action_mailer.default_url_options = { :host => 'softgalia.com' } config.action_mailer.default :charset => 'utf-8' config.action_mailer.raise_delivery_errors = true config.action_mailer.perform_deliveries = true config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address => 'localhost', :domain => 'dechado13.softgalia.com', :port => 465, :user_name => '[email protected]', :authentication => :login, :enable_starttls_auto => false, :tls => true, :openssl_verify_mode => 'none', :password => ''} config.cache_classes = true config.eager_load = true config.consider_all_requests_local = false config.action_controller.perform_caching = true config.serve_static_files = true config.assets.js_compressor = :uglifier config.serve_static_files = true config.assets.digest = true config.log_level = :debug config.i18n.fallbacks = true config.active_support.deprecation = :notify config.log_formatter = ::Logger::Formatter.new config.active_record