reverse_proxy 0.1.1 → 0.1.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/lib/reverse_proxy/config/nginx.rb +1 -1
- data/lib/reverse_proxy/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: 779d144c41250249d3b78df5cd5616d708e9e498
|
4
|
+
data.tar.gz: 5895a71a15b50e07a3173a4340003fdfc36dc757
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca661f1a1512726359f0cef87164b30311fbda0ca2784ce900a05e7eb2b38595d358e9f77e507ca90c74eb2b25878e9c8c7d03a408067013b304d4cf7be8d1a0
|
7
|
+
data.tar.gz: 8a7324787b0e0227e561a8ada8e076672f673c484d7d62cd545e0f93272f6edabed99858d88e00412b782147550279199d9c4fa1be5bb13f8ca129fe2d69347f
|
@@ -36,7 +36,6 @@ module ReverseProxy
|
|
36
36
|
worker_rlimit_nofile 8192;
|
37
37
|
pid <%= pid.relative_path_from chroot %>;
|
38
38
|
error_log error.log;
|
39
|
-
access_log access.log;
|
40
39
|
events {
|
41
40
|
worker_connections 2048;
|
42
41
|
}
|
@@ -46,6 +45,7 @@ module ReverseProxy
|
|
46
45
|
default_type <%= default_type %>;
|
47
46
|
charset_types <%= charset_types %>;
|
48
47
|
keepalive_timeout 5;
|
48
|
+
access_log access.log;
|
49
49
|
tcp_nopush on;
|
50
50
|
sendfile on;
|
51
51
|
gzip on;
|