From 4cffb404eae96e10dd5dbc6f8379dc6727ddf68d Mon Sep 17 00:00:00 2001 From: Fernando Brito Date: Mon, 14 Apr 2014 16:13:06 -0300 Subject: [PATCH] Remove arquivo que foi commitado sem querer --- config/libras@150.165.204.30 | 40 ---------------------------------------- 1 file changed, 0 insertions(+), 40 deletions(-) delete mode 100644 config/libras@150.165.204.30 diff --git a/config/libras@150.165.204.30 b/config/libras@150.165.204.30 deleted file mode 100644 index 06437b6..0000000 --- a/config/libras@150.165.204.30 +++ /dev/null @@ -1,40 +0,0 @@ -# Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved. -# -# Author Igor Amorim - www.igoramorim.com -# -worker_processes 2 -APP_PATH = "/home/gtaaas/gtaaas_web/" -working_directory APP_PATH - -# This loads the application in the master process before forking -# worker processes -# Read more about it here: -# http://unicorn.bogomips.org/Unicorn/Configurator.html -preload_app true - -timeout 30 - -# This is where we specify the socket. -# We will point the upstream Nginx module to this socket later on -listen "unix:#{APP_PATH}tmp/sockets/unicorn.sock", :backlog => 64 - -pid "#{APP_PATH}tmp/pids/unicorn.pid" - -# Set the path of the log files inside the log folder of the testapp -stderr_path "#{APP_PATH}log/unicorn.stderr.log" -stdout_path "#{APP_PATH}log/unicorn.stdout.log" - -before_fork do |server, worker| -# This option works in together with preload_app true setting -# What is does is prevent the master process from holding -# the database connection - defined?(ActiveRecord::Base) and - ActiveRecord::Base.connection.disconnect! -end - -after_fork do |server, worker| -# Here we are establishing the connection after forking worker -# processes - defined?(ActiveRecord::Base) and - ActiveRecord::Base.establish_connection -end -- libgit2 0.21.2