capistrano-pumaio 3.0.2 → 3.0.3
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/VERSION +1 -1
- data/capistrano-pumaio.gemspec +3 -3
- data/templates/nginx/application.conf.erb +1 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6eba443a7557705de098dc57c7ddc04cff4d1fee
|
|
4
|
+
data.tar.gz: 769107845b57cda95938bf49e35633be0daee2fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5398079d4eb19c45fac8dfa43619c2a6c2ced936ab4fa036b33688fd8d94dd7bafcb45773393fbe7bec48f00228fc871eba9cf7ac1133741371e20778f4183cb
|
|
7
|
+
data.tar.gz: e5df0905abd18cb1aceeedce28821fe9871afbec9978afe7be2e28a0b70d4d6b49ecab871c7877ee55ae606e75a2a232734b8d4426109b1a8a8175a072ed05e9
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.3
|
data/capistrano-pumaio.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: capistrano-pumaio 3.0.
|
|
5
|
+
# stub: capistrano-pumaio 3.0.3 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "capistrano-pumaio"
|
|
9
|
-
s.version = "3.0.
|
|
9
|
+
s.version = "3.0.3"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Leif Ringstad"]
|
|
14
|
-
s.date = "2015-
|
|
14
|
+
s.date = "2015-10-28"
|
|
15
15
|
s.description = "Capistrano recipes for puma using runit and monit. Includes nginx recipes for the app server."
|
|
16
16
|
s.email = "leifcr@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -105,13 +105,12 @@ upstream <%= upstream_name_ssl %> {
|
|
|
105
105
|
# you are using ssl as well as port 80.
|
|
106
106
|
server {
|
|
107
107
|
listen <%= fetch(:nginx_ssl_port) %>;
|
|
108
|
-
client_max_body_size 500M;
|
|
109
108
|
server_name <%= fetch(:server_names) %>;
|
|
110
109
|
ssl on;
|
|
111
110
|
ssl_certificate <%= fetch(:nginx_ssl_public_crt) %>;
|
|
112
111
|
ssl_certificate_key <%= fetch(:nginx_ssl_private_key) %>;
|
|
113
112
|
ssl_session_timeout 5m;
|
|
114
|
-
client_max_body_size
|
|
113
|
+
client_max_body_size <%= fetch(:nginx_ssl_client_max_body_size) %>;
|
|
115
114
|
|
|
116
115
|
root <%= fetch(:deploy_to) %>/current/public;
|
|
117
116
|
access_log <%= fetch(:nginx_app_log_path) %>/<%= environment %>_ssl.access.log;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-pumaio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Leif Ringstad
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|