- 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
563 B
Diff
15 lines
563 B
Diff
Index: nginx-1.11.2/auto/install
|
|
===================================================================
|
|
--- nginx-1.11.2.orig/auto/install
|
|
+++ nginx-1.11.2/auto/install
|
|
@@ -154,8 +154,7 @@ install: build $NGX_INSTALL_PERL_MODULES
|
|
test -d '\$(DESTDIR)`dirname "$NGX_HTTP_LOG_PATH"`' \\
|
|
|| mkdir -p '\$(DESTDIR)`dirname "$NGX_HTTP_LOG_PATH"`'
|
|
|
|
- test -d '\$(DESTDIR)$NGX_PREFIX/html' \\
|
|
- || cp -R $NGX_HTML '\$(DESTDIR)$NGX_PREFIX'
|
|
+ test -d '\$(DESTDIR)/srv/www/htdocs' || install -d '\$(DESTDIR)/srv/www/' && cp -r html '\$(DESTDIR)/srv/www/htdocs'
|
|
END
|
|
|
|
|