capistrano-unicorn-nginx 3.3.1 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/capistrano/dsl/unicorn_paths.rb +2 -2
- data/lib/capistrano/unicorn_nginx/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 720a604c0226c038d3e5abe3e1d49980eac3d172
|
|
4
|
+
data.tar.gz: 75db144d492da37337c3d8bfad21d1f8323c73ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1cea9b4ea3a93d73c5750be432d909b1bd1d43a0cd9ded9783ba51cc9f2a16c210944d2ab982f62a8d256ca7d61d4a112193d73e18aae652505f9fb39c7a6a6
|
|
7
|
+
data.tar.gz: 0c3459d9aed1b129c85668ce47205e13e24afa3ec085281c0e99d4effe408e141a533053e823a66723c4e460815782e8b3f294e102f1ecfc95b1e0445ac13f9c
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
### master
|
|
4
4
|
|
|
5
|
+
### v3.3.2, 2015-02-16
|
|
6
|
+
- bug fix: replaced non-existent `log_dir` with `unicorn_log_dir` (@rhomeister)
|
|
7
|
+
|
|
5
8
|
### v3.3.1, 2015-02-16
|
|
6
9
|
- made nginx fail_timeout configurable (@rhomeister)
|
|
7
10
|
- added logrotate configuration for nginx logs (@rhomeister)
|
|
@@ -19,11 +19,11 @@ module Capistrano
|
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
def unicorn_log_file
|
|
22
|
-
|
|
22
|
+
unicorn_log_dir.join('unicorn.stdout.log')
|
|
23
23
|
end
|
|
24
24
|
|
|
25
25
|
def unicorn_error_log_file
|
|
26
|
-
|
|
26
|
+
unicorn_log_dir.join('unicorn.stderr.log')
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
def unicorn_default_logrotate_config_file
|