We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a84aee4 commit 0306692Copy full SHA for 0306692
nginx.tmpl
@@ -12,6 +12,11 @@ map $http_upgrade $proxy_connection {
12
'' '';
13
}
14
15
+gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
16
+
17
+access_log /proc/self/fd/1;
18
+error_log /proc/self/fd/2;
19
20
# HTTP 1.1 support
21
proxy_http_version 1.1;
22
proxy_buffering off;
@@ -61,11 +66,7 @@ upstream {{ $host }} {
61
66
62
67
63
68
server {
64
- gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
65
-
69
server_name {{ $host }};
- error_log /proc/self/fd/2;
- access_log /proc/self/fd/1;
70
71
location / {
72
proxy_pass http://{{ $host }};
0 commit comments