summaryrefslogtreecommitdiffstats
path: root/ansible/templates
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/templates')
-rw-r--r--ansible/templates/nginx.conf25
1 files changed, 13 insertions, 12 deletions
diff --git a/ansible/templates/nginx.conf b/ansible/templates/nginx.conf
index a484594e..4af5be01 100644
--- a/ansible/templates/nginx.conf
+++ b/ansible/templates/nginx.conf
@@ -72,16 +72,17 @@ server {
expires max;
}
}
- # Anonymize IP addresses
- # https://www.supertechcrew.com/anonymizing-logs-nginx-apache/
- map $remote_addr $remote_addr_anon {
- ~(?P<ip>\d+\.\d+\.\d+)\. $ip.0;
- ~(?P<ip>[^:]+:[^:]+): $ip::;
- 127.0.0.1 $remote_addr;
- ::1 $remote_addr;
- default 0.0.0.0;
- }
- log_format main '$remote_addr_anon - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" "$http_user_agent"';
- access_log /dev/stdout main;
}
+
+# Anonymize IP addresses
+# https://www.supertechcrew.com/anonymizing-logs-nginx-apache/
+map $remote_addr $remote_addr_anon {
+ ~(?P<ip>\d+\.\d+\.\d+)\. $ip.0;
+ ~(?P<ip>[^:]+:[^:]+): $ip::;
+ 127.0.0.1 $remote_addr;
+ ::1 $remote_addr;
+ default 0.0.0.0;
+}
+log_format main '$remote_addr_anon - $remote_user [$time_local] "$request" '
+'$status $body_bytes_sent "$http_referer" "$http_user_agent"';
+access_log /dev/stdout main;