recipiez 0.6.4 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- 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
|