- Updated to 1.27.4 * https://nginx.org/en/CHANGES * Fixed insufficient check in virtual servers handling with TLSv1.3 SNI allowed to reuse SSL sessions in a different virtual server, to bypass client SSL certificates verification (CVE-2025-23419). * Added the "ssl_object_cache_inheritable", "ssl_certificate_cache", "proxy_ssl_certificate_cache", "grpc_ssl_certificate_cache", and "uwsgi_ssl_certificate_cache", "keepalive_min_timeout" directives. * Fixed nginx could not build libatomic library using the library sources if the --with-libatomic=DIR option was used. OBS-URL: https://build.opensuse.org/package/show/server:http/nginx?expand=0&rev=278
15 lines
328 B
Plaintext
15 lines
328 B
Plaintext
/var/log/nginx/*.log {
|
|
compress
|
|
dateext
|
|
maxage 365
|
|
rotate 99
|
|
size=+4096k
|
|
missingok
|
|
notifempty
|
|
delaycompress
|
|
lastaction
|
|
# "-s reopen" will use the pid file passed in the config file or the compiled in default path
|
|
[ -f /run/nginx.pid ] && /usr/sbin/nginx -s reopen
|
|
endscript
|
|
}
|