Opened 5 years ago

Closed 5 years ago

#1877 closed defect (invalid)

Проблема с "log_format"

Reported by: nickfoxxx1@… Owned by:
Priority: minor Milestone:
Component: other Version: 1.16.x
Keywords: log_format, log Cc:
uname -a: Linux v00pr01nlbtst.corp.tander.ru 3.10.0-1062.1.1.el7.x86_64 #1 SMP Fri Sep 13 22:55:44 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
nginx -V: nginx version: nginx/1.16.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie'

Description

Добрый день.
Обнаружена ошибка связанная с "log_format"

При назначении имени формата лога в access_log /var/log/nginx/test main; выполнив проверку синтаксиса происходит следующее:
# nginx -t
nginx: [emerg] unknown log format "main" in /etc/nginx/conf.d/press.conf:24
nginx: configuration file /etc/nginx/nginx.conf test failed

использую следующий "log_format":

log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for" "$upstream_addr"';

Если убрать имя формата "main" access_log /var/log/nginx/test; то ошибок нет и проверка синтаксиса проходи успешно.

Прошу помочь.
Спасибо.

Change History (2)

comment:1 by nickfoxxx1@…, 5 years ago

Мой конфигурационный файл

server {
    listen *:443 ssl http2;
    server_name               site.ru;
    ssl_certificate           /etc/nginx/cert/site.ru.pem;
    ssl_certificate_key       /etc/nginx/cert/site.ru.key;
    ssl_session_cache         shared:SSL:10m;
    ssl_session_timeout       1d;
    ssl_protocols             TLSv1.2;
    ssl_ciphers               ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
    ssl_prefer_server_ciphers off;
    add_header Strict-Transport-Security "max-age=63072000" always;

    error_log /var/log/nginx/ssl-press.magnit.ru.error.log;
    access_log /var/log/nginx/test main;
}

comment:2 by Maxim Dounin, 5 years ago

Resolution: invalid
Status: newclosed

Судя по ошибке - nginx не знает формат main. Это может быть либо из-за того, что формат не описан позже, чем используется, либо из-за того, что он вообще не описан - а, скажем, попал в параметры предыдущей директивы из-за пропущенной точки с запятой. В любом случае это выглядит как ошибка в конфигурации, а не ошибка в nginx'е. С подобными проблемами лучше обращаться в список рассылки.

Note: See TracTickets for help on using tickets.