[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Minios-devel] [UNIKRAFT NGINX v3 7/8] ngx_modules.c: Introduce generated file
Reviewed-by: Costin Lupu <costin.lupu@xxxxxxxxx> On 10/29/19 10:56 PM, Mihai Pogonaru wrote: > Auto generated file containing arrays of enabled Nginx modules. This > is the default configuration file with select and sub modules enabled. > > Signed-off-by: Mihai Pogonaru <pogonarumihai@xxxxxxxxx> > --- > ngx_modules.c | 174 > ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 174 insertions(+) > create mode 100644 ngx_modules.c > > diff --git a/ngx_modules.c b/ngx_modules.c > new file mode 100644 > index 0000000..cd48599 > --- /dev/null > +++ b/ngx_modules.c > @@ -0,0 +1,174 @@ > + > +#include <ngx_config.h> > +#include <ngx_core.h> > + > + > + > +extern ngx_module_t ngx_core_module; > +extern ngx_module_t ngx_errlog_module; > +extern ngx_module_t ngx_conf_module; > +extern ngx_module_t ngx_regex_module; > +extern ngx_module_t ngx_events_module; > +extern ngx_module_t ngx_event_core_module; > +extern ngx_module_t ngx_epoll_module; > +extern ngx_module_t ngx_select_module; > +extern ngx_module_t ngx_http_module; > +extern ngx_module_t ngx_http_core_module; > +extern ngx_module_t ngx_http_log_module; > +extern ngx_module_t ngx_http_upstream_module; > +extern ngx_module_t ngx_http_static_module; > +extern ngx_module_t ngx_http_autoindex_module; > +extern ngx_module_t ngx_http_index_module; > +extern ngx_module_t ngx_http_mirror_module; > +extern ngx_module_t ngx_http_try_files_module; > +extern ngx_module_t ngx_http_auth_basic_module; > +extern ngx_module_t ngx_http_access_module; > +extern ngx_module_t ngx_http_limit_conn_module; > +extern ngx_module_t ngx_http_limit_req_module; > +extern ngx_module_t ngx_http_geo_module; > +extern ngx_module_t ngx_http_map_module; > +extern ngx_module_t ngx_http_split_clients_module; > +extern ngx_module_t ngx_http_referer_module; > +extern ngx_module_t ngx_http_rewrite_module; > +extern ngx_module_t ngx_http_proxy_module; > +extern ngx_module_t ngx_http_fastcgi_module; > +extern ngx_module_t ngx_http_uwsgi_module; > +extern ngx_module_t ngx_http_scgi_module; > +extern ngx_module_t ngx_http_memcached_module; > +extern ngx_module_t ngx_http_empty_gif_module; > +extern ngx_module_t ngx_http_browser_module; > +extern ngx_module_t ngx_http_upstream_hash_module; > +extern ngx_module_t ngx_http_upstream_ip_hash_module; > +extern ngx_module_t ngx_http_upstream_least_conn_module; > +extern ngx_module_t ngx_http_upstream_random_module; > +extern ngx_module_t ngx_http_upstream_keepalive_module; > +extern ngx_module_t ngx_http_upstream_zone_module; > +extern ngx_module_t ngx_http_write_filter_module; > +extern ngx_module_t ngx_http_header_filter_module; > +extern ngx_module_t ngx_http_chunked_filter_module; > +extern ngx_module_t ngx_http_range_header_filter_module; > +extern ngx_module_t ngx_http_gzip_filter_module; > +extern ngx_module_t ngx_http_postpone_filter_module; > +extern ngx_module_t ngx_http_ssi_filter_module; > +extern ngx_module_t ngx_http_charset_filter_module; > +extern ngx_module_t ngx_http_sub_filter_module; > +extern ngx_module_t ngx_http_userid_filter_module; > +extern ngx_module_t ngx_http_headers_filter_module; > +extern ngx_module_t ngx_http_copy_filter_module; > +extern ngx_module_t ngx_http_range_body_filter_module; > +extern ngx_module_t ngx_http_not_modified_filter_module; > + > +ngx_module_t *ngx_modules[] = { > + &ngx_core_module, > + &ngx_errlog_module, > + &ngx_conf_module, > + &ngx_regex_module, > + &ngx_events_module, > + &ngx_event_core_module, > + &ngx_epoll_module, > + &ngx_select_module, > + &ngx_http_module, > + &ngx_http_core_module, > + &ngx_http_log_module, > + &ngx_http_upstream_module, > + &ngx_http_static_module, > + &ngx_http_autoindex_module, > + &ngx_http_index_module, > + &ngx_http_mirror_module, > + &ngx_http_try_files_module, > + &ngx_http_auth_basic_module, > + &ngx_http_access_module, > + &ngx_http_limit_conn_module, > + &ngx_http_limit_req_module, > + &ngx_http_geo_module, > + &ngx_http_map_module, > + &ngx_http_split_clients_module, > + &ngx_http_referer_module, > + &ngx_http_rewrite_module, > + &ngx_http_proxy_module, > + &ngx_http_fastcgi_module, > + &ngx_http_uwsgi_module, > + &ngx_http_scgi_module, > + &ngx_http_memcached_module, > + &ngx_http_empty_gif_module, > + &ngx_http_browser_module, > + &ngx_http_upstream_hash_module, > + &ngx_http_upstream_ip_hash_module, > + &ngx_http_upstream_least_conn_module, > + &ngx_http_upstream_random_module, > + &ngx_http_upstream_keepalive_module, > + &ngx_http_upstream_zone_module, > + &ngx_http_write_filter_module, > + &ngx_http_header_filter_module, > + &ngx_http_chunked_filter_module, > + &ngx_http_range_header_filter_module, > + &ngx_http_gzip_filter_module, > + &ngx_http_postpone_filter_module, > + &ngx_http_ssi_filter_module, > + &ngx_http_charset_filter_module, > + &ngx_http_sub_filter_module, > + &ngx_http_userid_filter_module, > + &ngx_http_headers_filter_module, > + &ngx_http_copy_filter_module, > + &ngx_http_range_body_filter_module, > + &ngx_http_not_modified_filter_module, > + NULL > +}; > + > +char *ngx_module_names[] = { > + "ngx_core_module", > + "ngx_errlog_module", > + "ngx_conf_module", > + "ngx_regex_module", > + "ngx_events_module", > + "ngx_event_core_module", > + "ngx_epoll_module", > + "ngx_select_module", > + "ngx_http_module", > + "ngx_http_core_module", > + "ngx_http_log_module", > + "ngx_http_upstream_module", > + "ngx_http_static_module", > + "ngx_http_autoindex_module", > + "ngx_http_index_module", > + "ngx_http_mirror_module", > + "ngx_http_try_files_module", > + "ngx_http_auth_basic_module", > + "ngx_http_access_module", > + "ngx_http_limit_conn_module", > + "ngx_http_limit_req_module", > + "ngx_http_geo_module", > + "ngx_http_map_module", > + "ngx_http_split_clients_module", > + "ngx_http_referer_module", > + "ngx_http_rewrite_module", > + "ngx_http_proxy_module", > + "ngx_http_fastcgi_module", > + "ngx_http_uwsgi_module", > + "ngx_http_scgi_module", > + "ngx_http_memcached_module", > + "ngx_http_empty_gif_module", > + "ngx_http_browser_module", > + "ngx_http_upstream_hash_module", > + "ngx_http_upstream_ip_hash_module", > + "ngx_http_upstream_least_conn_module", > + "ngx_http_upstream_random_module", > + "ngx_http_upstream_keepalive_module", > + "ngx_http_upstream_zone_module", > + "ngx_http_write_filter_module", > + "ngx_http_header_filter_module", > + "ngx_http_chunked_filter_module", > + "ngx_http_range_header_filter_module", > + "ngx_http_gzip_filter_module", > + "ngx_http_postpone_filter_module", > + "ngx_http_ssi_filter_module", > + "ngx_http_charset_filter_module", > + "ngx_http_sub_filter_module", > + "ngx_http_userid_filter_module", > + "ngx_http_headers_filter_module", > + "ngx_http_copy_filter_module", > + "ngx_http_range_body_filter_module", > + "ngx_http_not_modified_filter_module", > + NULL > +}; > + > _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |