Skip to content

Commit 4d2436a

Browse files
committed
imagery: increase cache sizes
1 parent e1f1e07 commit 4d2436a

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

roles/imagery.rb

-10
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,6 @@
2020
"net.core.somaxconn" => 10000
2121
}
2222
}
23-
},
24-
:nginx => {
25-
:cache => {
26-
:fastcgi => {
27-
:enable => true,
28-
:keys_zone => "fastcgi_cache_zone:256M",
29-
:inactive => "45d",
30-
:max_size => "51200M"
31-
}
32-
}
3323
}
3424
)
3525

roles/lockheed.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,17 @@
8585
},
8686
:nginx => {
8787
:cache => {
88+
:fastcgi => {
89+
:enable => true,
90+
:keys_zone => "fastcgi_cache_zone:2048M",
91+
:inactive => "180d",
92+
:max_size => "196608M"
93+
},
8894
:proxy => {
8995
:enable => true,
90-
:keys_zone => "proxy_cache_zone:256M",
96+
:keys_zone => "proxy_cache_zone:2048M",
9197
:inactive => "180d",
92-
:max_size => "51200M"
98+
:max_size => "196608M"
9399
}
94100
}
95101
}

0 commit comments

Comments
 (0)