1
0
Fork 0
nginx-ipscrub/ipscrub/test/ipv46hash/nginx.conf

21 lines
335 B
Nginx Configuration File

error_log logs/error.log;
events {}
http {
log_format main '$remote_addr_ipscrub';
access_log logs/access.log main;
ipscrub_period_seconds 2;
server {
# listen 8081;
# listen [::]:8081 ipv6only=off;
listen 8081;
listen [::]:8081;
server_name localhost;
}
}