factorylabs-fdlcap 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/fdlcap.gemspec +1 -1
- data/lib/fdlcap/recipes/nginx.rb +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.3
|
data/fdlcap.gemspec
CHANGED
data/lib/fdlcap/recipes/nginx.rb
CHANGED
@@ -74,7 +74,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
74
74
|
task :conf, :roles => :web do
|
75
75
|
if can_configure_nginx
|
76
76
|
|
77
|
-
result = render_erb_template(File.join(File.dirname(__FILE__),'..','templates','nginx.conf.erb')
|
77
|
+
result = render_erb_template(File.join(File.dirname(__FILE__),'..','templates','nginx.conf.erb'))
|
78
78
|
put result, "/tmp/nginx.conf"
|
79
79
|
sudo "cp /tmp/nginx.conf /etc/nginx/nginx.conf"
|
80
80
|
|