capistrano-unicorn-nginx-osx 3.4.0.2 → 3.4.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/lib/capistrano/dsl/nginx_paths.rb +1 -1
- data/lib/capistrano/tasks/nginx.rake +2 -2
- data/lib/capistrano/unicorn_nginx_osx/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 017e1b944053edcacb0b3a025e3d24d726254922
|
4
|
+
data.tar.gz: 7d311c40c9ce36b332b6b97ac20254c58055e6fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 428f819397be1f4eaebe0dc1c0d1dd044015bc6c7a14139131eef8f069f0a899fdf1e09820cca25ca3fbf6b1a57dce3fb819bb5a31181ec80dede47542101b57
|
7
|
+
data.tar.gz: 6cc568895f60450edb64ecadb49b20cc3ca8c13341e2669102bf788657cc5b01bfe36bce5036be348b4f2f15029ae17e2171560b2f0e9a2b5175fc393175f8c1
|
data/.gitignore
CHANGED
@@ -11,7 +11,7 @@ namespace :load do
|
|
11
11
|
set :nginx_pid, nginx_default_pid_file
|
12
12
|
# set :nginx_server_name # default set in the `nginx:defaults` task
|
13
13
|
# ssl options
|
14
|
-
set :nginx_location,
|
14
|
+
set :nginx_location, '/usr/local/etc/nginx'
|
15
15
|
set :nginx_use_ssl, false
|
16
16
|
set :nginx_use_spdy, false
|
17
17
|
# if true, passes the SSL client certificate to the application server for consumption in Ruby code
|
@@ -42,7 +42,7 @@ namespace :nginx do
|
|
42
42
|
desc 'Setup nginx configuration'
|
43
43
|
task :setup do
|
44
44
|
on roles :web do
|
45
|
-
sudo_upload! template('nginx_conf.erb'),
|
45
|
+
sudo_upload! template('nginx_conf.erb'), nginx_config_file
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: capistrano-unicorn-nginx-osx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.0.
|
4
|
+
version: 3.4.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ruben Stranders
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-
|
13
|
+
date: 2015-11-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: capistrano
|
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
124
124
|
version: '0'
|
125
125
|
requirements: []
|
126
126
|
rubyforge_project:
|
127
|
-
rubygems_version: 2.4.
|
127
|
+
rubygems_version: 2.4.8
|
128
128
|
signing_key:
|
129
129
|
specification_version: 4
|
130
130
|
summary: Capistrano tasks for automatic and sensible unicorn + nginx configuraion
|