@@ -46,28 +46,31 @@ const ALL_SERVERS_AND_PUBLIC_KEY_IDS: [(&str, &str); 4] = [
46
46
NGX_GPG_SERVER_AND_KEY_ID ,
47
47
] ;
48
48
/// List of configure switches specifying the modules to build nginx with
49
- const NGX_BASE_MODULES : [ & str ; 15 ] = [
49
+ const NGX_BASE_MODULES : [ & str ; 20 ] = [
50
50
"--with-compat" ,
51
- "--with-threads" ,
52
51
"--with-http_addition_module" ,
53
52
"--with-http_auth_request_module" ,
53
+ "--with-http_flv_module" ,
54
54
"--with-http_gunzip_module" ,
55
55
"--with-http_gzip_static_module" ,
56
56
"--with-http_random_index_module" ,
57
57
"--with-http_realip_module" ,
58
58
"--with-http_secure_link_module" ,
59
59
"--with-http_slice_module" ,
60
+ "--with-http_slice_module" ,
61
+ "--with-http_ssl_module" ,
60
62
"--with-http_stub_status_module" ,
61
63
"--with-http_sub_module" ,
62
- "--with-stream " ,
64
+ "--with-http_v2_module " ,
63
65
"--with-stream_realip_module" ,
66
+ "--with-stream_ssl_module" ,
64
67
"--with-stream_ssl_preread_module" ,
68
+ "--with-stream" ,
69
+ "--with-threads" ,
65
70
] ;
66
71
/// Additional configuration flags to use when building on Linux.
67
- const NGX_LINUX_ADDITIONAL_OPTS : [ & str ; 5 ] = [
72
+ const NGX_LINUX_ADDITIONAL_OPTS : [ & str ; 3 ] = [
68
73
"--with-file-aio" ,
69
- "--with-http_ssl_module" ,
70
- "--with-stream_ssl_module" ,
71
74
"--with-cc-opt=-g -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC" ,
72
75
"--with-ld-opt=-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie" ,
73
76
] ;
0 commit comments