recipiez 0.6.4 → 0.6.5
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.
- data/lib/recipiez/version.rb +1 -1
- data/recipes/templates/nginx_vhost.erb +2 -0
- metadata +2 -2
data/lib/recipiez/version.rb
CHANGED
|
@@ -25,6 +25,7 @@ server {
|
|
|
25
25
|
root <%= current_path %>/public/;
|
|
26
26
|
index index.html;
|
|
27
27
|
client_max_body_size 50M;
|
|
28
|
+
types_hash_max_size 2048;
|
|
28
29
|
|
|
29
30
|
# this rewrites all the requests to the maintenance.html
|
|
30
31
|
# page if it exists in the doc root. This is for capistrano's
|
|
@@ -85,6 +86,7 @@ server {
|
|
|
85
86
|
root <%= current_path %>/public/;
|
|
86
87
|
index index.html;
|
|
87
88
|
client_max_body_size 50M;
|
|
89
|
+
types_hash_max_size 2048;
|
|
88
90
|
|
|
89
91
|
|
|
90
92
|
# this rewrites all the requests to the maintenance.html
|