feat: update intensity data
This commit is contained in:
parent
68758ba4c0
commit
74e4a85bf9
3 changed files with 5 additions and 2 deletions
|
@ -21,7 +21,7 @@ steps:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- ALPINE_VERSION: "3.19.0"
|
- ALPINE_VERSION: "3.19.0"
|
||||||
ACCESS_LOG_VERSION: "0.5.5"
|
ACCESS_LOG_VERSION: "0.5.6"
|
||||||
NGINX_VERSION: "1.24.0-r14"
|
NGINX_VERSION: "1.24.0-r14"
|
||||||
- ALPINE_VERSION: "3.18.4"
|
- ALPINE_VERSION: "3.18.4"
|
||||||
ACCESS_LOG_VERSION: "0.5.5"
|
ACCESS_LOG_VERSION: "0.5.5"
|
||||||
|
|
|
@ -5,7 +5,7 @@ MAINTAINER "f <f@sutty.nl>"
|
||||||
|
|
||||||
ARG NGINX_VERSION="1.24.0-r7"
|
ARG NGINX_VERSION="1.24.0-r7"
|
||||||
ARG ACCESS_LOGS_FLAGS="--database=sqlite3:///var/log/access_log.sqlite3 -c /usr/share/crawler-user-agents/crawler-user-agents.json"
|
ARG ACCESS_LOGS_FLAGS="--database=sqlite3:///var/log/access_log.sqlite3 -c /usr/share/crawler-user-agents/crawler-user-agents.json"
|
||||||
ARG ACCESS_LOG_VERSION="0.5.1"
|
ARG ACCESS_LOG_VERSION="0.5.6"
|
||||||
|
|
||||||
ENV ACCESS_LOGS_FLAGS=${ACCESS_LOGS_FLAGS}
|
ENV ACCESS_LOGS_FLAGS=${ACCESS_LOGS_FLAGS}
|
||||||
|
|
||||||
|
|
3
nginx/access_logd_0.5.6.conf
Normal file
3
nginx/access_logd_0.5.6.conf
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
log_format access_logd escape=json '{"host":"$host","msec":$msec,"server_protocol":"$server_protocol","request_method":"$request_method","request_completion":"$request_completion","uri":"$uri","query_string":"$query_string","status":$status,"sent_http_content_type":"$sent_http_content_type","sent_http_content_encoding":"$sent_http_content_encoding","sent_http_etag":"$sent_http_etag","sent_http_last_modified":"$sent_http_last_modified","http_accept":"$http_accept","http_accept_encoding":"$http_accept_encoding","http_accept_language":"$http_accept_language","http_pragma":"$http_pragma","http_cache_control":"$http_cache_control","http_if_none_match":"$http_if_none_match","http_dnt":"$http_dnt","http_user_agent":"$http_user_agent","http_origin":"$http_origin","http_referer":{"origin":"$http_origin","referrer":"$http_referer","policy":"origin-when-cross-origin"},"request_time":$request_time,"bytes_sent":$bytes_sent,"body_bytes_sent":$body_bytes_sent,"request_length":$request_length,"http_connection":"$http_connection","pipe":"$pipe","connection_requests":$connection_requests,"geoip2_data_country_name":"$geoip2_data_country_name","geoip2_data_country_iso_code":"$geoip2_data_country_iso_code","geoip2_data_city_name":"$geoip2_data_city_name","ssl_server_name":"$ssl_server_name","ssl_protocol":"$ssl_protocol","ssl_early_data":"$ssl_early_data","ssl_session_reused":"$ssl_session_reused","ssl_curves":"$ssl_curves","ssl_ciphers":"$ssl_ciphers","ssl_cipher":"$ssl_cipher","sent_http_x_xss_protection":"$sent_http_x_xss_protection","sent_http_x_frame_options":"$sent_http_x_frame_options","sent_http_x_content_type_options":"$sent_http_x_content_type_options","sent_http_strict_transport_security":"$sent_http_strict_transport_security","nginx_version":"$nginx_version","pid":"$pid","remote_user":"$remote_user","request_uri":"$request_uri"}';
|
||||||
|
|
||||||
|
access_log syslog:server=unix:/tmp/access_log.socket,nohostname access_logd;
|
Loading…
Reference in a new issue