Fix nginx config.

pull/722/head
Dessalines 2019-12-13 18:38:30 -08:00
parent cffbb7cd58
commit e4cea91ea8
1 changed files with 13 additions and 12 deletions

View File

@ -72,6 +72,8 @@ server {
expires max;
}
}
}
# Anonymize IP addresses
# https://www.supertechcrew.com/anonymizing-logs-nginx-apache/
map $remote_addr $remote_addr_anon {
@ -84,4 +86,3 @@ server {
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;
}