├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Nginx信号控制.pdf ├── ngx_stream_access_module模块解析.pdf ├── ngx_stream_limit_conn_module模块解析.pdf ├── slab共享内存使用及实现原理简介.pdf ├── 实例分析set命令及相关脚本引擎.pdf ├── 客户端非阻塞socket建链流程 .pdf └── 异步文件IO.pdf ├── nginx-1.10.0 ├── CHANGES ├── CHANGES.ru ├── LICENSE ├── README ├── auto │ ├── cc │ │ ├── acc │ │ ├── bcc │ │ ├── ccc │ │ ├── clang │ │ ├── conf │ │ ├── gcc │ │ ├── icc │ │ ├── msvc │ │ ├── name │ │ ├── owc │ │ └── sunc │ ├── define │ ├── endianness │ ├── feature │ ├── have │ ├── have_headers │ ├── headers │ ├── include │ ├── init │ ├── install │ ├── lib │ │ ├── conf │ │ ├── geoip │ │ │ └── conf │ │ ├── google-perftools │ │ │ └── conf │ │ ├── libatomic │ │ │ ├── conf │ │ │ └── make │ │ ├── libgd │ │ │ └── conf │ │ ├── libxslt │ │ │ └── conf │ │ ├── make │ │ ├── md5 │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ │ ├── openssl │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ └── makefile.msvc │ │ ├── pcre │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ │ ├── perl │ │ │ ├── conf │ │ │ └── make │ │ ├── sha1 │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ │ ├── test │ │ └── zlib │ │ │ ├── conf │ │ │ ├── make │ │ │ ├── makefile.bcc │ │ │ ├── makefile.msvc │ │ │ └── makefile.owc │ ├── make │ ├── module │ ├── modules │ ├── nohave │ ├── options │ ├── os │ │ ├── conf │ │ ├── darwin │ │ ├── freebsd │ │ ├── linux │ │ ├── solaris │ │ └── win32 │ ├── sources │ ├── stubs │ ├── summary │ ├── threads │ ├── types │ │ ├── sizeof │ │ ├── typedef │ │ ├── uintptr_t │ │ └── value │ └── unix ├── conf │ ├── fastcgi.conf │ ├── fastcgi_params │ ├── koi-utf │ ├── koi-win │ ├── mime.types │ ├── nginx.conf │ ├── scgi_params │ ├── uwsgi_params │ └── win-utf ├── configure ├── contrib │ ├── README │ ├── geo2nginx.pl │ ├── unicode2nginx │ │ ├── koi-utf │ │ ├── unicode-to-nginx.pl │ │ └── win-utf │ └── vim │ │ ├── ftdetect │ │ └── nginx.vim │ │ ├── indent │ │ └── nginx.vim │ │ └── syntax │ │ └── nginx.vim ├── html │ ├── 50x.html │ └── index.html ├── man │ └── nginx.8 ├── objs │ ├── ngx_auto_config.h │ ├── ngx_auto_headers.h │ └── ngx_modules.c └── src │ ├── core │ ├── nginx.c │ ├── nginx.h │ ├── ngx_array.c │ ├── ngx_array.h │ ├── ngx_buf.c │ ├── ngx_buf.h │ ├── ngx_conf_file.c │ ├── ngx_conf_file.h │ ├── ngx_config.h │ ├── ngx_connection.c │ ├── ngx_connection.h │ ├── ngx_core.h │ ├── ngx_cpuinfo.c │ ├── ngx_crc.h │ ├── ngx_crc32.c │ ├── ngx_crc32.h │ ├── ngx_crypt.c │ ├── ngx_crypt.h │ ├── ngx_cycle.c │ ├── ngx_cycle.h │ ├── ngx_file.c │ ├── ngx_file.h │ ├── ngx_hash.c │ ├── ngx_hash.h │ ├── ngx_inet.c │ ├── ngx_inet.h │ ├── ngx_list.c │ ├── ngx_list.h │ ├── ngx_log.c │ ├── ngx_log.h │ ├── ngx_md5.c │ ├── ngx_md5.h │ ├── ngx_module.c │ ├── ngx_module.h │ ├── ngx_murmurhash.c │ ├── ngx_murmurhash.h │ ├── ngx_open_file_cache.c │ ├── ngx_open_file_cache.h │ ├── ngx_output_chain.c │ ├── ngx_palloc.c │ ├── ngx_palloc.h │ ├── ngx_parse.c │ ├── ngx_parse.h │ ├── ngx_parse_time.c │ ├── ngx_parse_time.h │ ├── ngx_proxy_protocol.c │ ├── ngx_proxy_protocol.h │ ├── ngx_queue.c │ ├── ngx_queue.h │ ├── ngx_radix_tree.c │ ├── ngx_radix_tree.h │ ├── ngx_rbtree.c │ ├── ngx_rbtree.h │ ├── ngx_regex.c │ ├── ngx_regex.h │ ├── ngx_resolver.c │ ├── ngx_resolver.h │ ├── ngx_rwlock.c │ ├── ngx_rwlock.h │ ├── ngx_sha1.h │ ├── ngx_shmtx.c │ ├── ngx_shmtx.h │ ├── ngx_slab.c │ ├── ngx_slab.h │ ├── ngx_spinlock.c │ ├── ngx_string.c │ ├── ngx_string.h │ ├── ngx_syslog.c │ ├── ngx_syslog.h │ ├── ngx_thread_pool.c │ ├── ngx_thread_pool.h │ ├── ngx_times.c │ └── ngx_times.h │ ├── event │ ├── modules │ │ ├── ngx_devpoll_module.c │ │ ├── ngx_epoll_module.c │ │ ├── ngx_eventport_module.c │ │ ├── ngx_kqueue_module.c │ │ ├── ngx_poll_module.c │ │ ├── ngx_select_module.c │ │ └── ngx_win32_select_module.c │ ├── ngx_event.c │ ├── ngx_event.h │ ├── ngx_event_accept.c │ ├── ngx_event_connect.c │ ├── ngx_event_connect.h │ ├── ngx_event_openssl.c │ ├── ngx_event_openssl.h │ ├── ngx_event_openssl_stapling.c │ ├── ngx_event_pipe.c │ ├── ngx_event_pipe.h │ ├── ngx_event_posted.c │ ├── ngx_event_posted.h │ ├── ngx_event_timer.c │ └── ngx_event_timer.h │ ├── http │ ├── modules │ │ ├── ngx_http_access_module.c │ │ ├── ngx_http_addition_filter_module.c │ │ ├── ngx_http_auth_basic_module.c │ │ ├── ngx_http_auth_request_module.c │ │ ├── ngx_http_autoindex_module.c │ │ ├── ngx_http_browser_module.c │ │ ├── ngx_http_charset_filter_module.c │ │ ├── ngx_http_chunked_filter_module.c │ │ ├── ngx_http_dav_module.c │ │ ├── ngx_http_degradation_module.c │ │ ├── ngx_http_empty_gif_module.c │ │ ├── ngx_http_fastcgi_module.c │ │ ├── ngx_http_flv_module.c │ │ ├── ngx_http_geo_module.c │ │ ├── ngx_http_geoip_module.c │ │ ├── ngx_http_gunzip_filter_module.c │ │ ├── ngx_http_gzip_filter_module.c │ │ ├── ngx_http_gzip_static_module.c │ │ ├── ngx_http_headers_filter_module.c │ │ ├── ngx_http_image_filter_module.c │ │ ├── ngx_http_index_module.c │ │ ├── ngx_http_limit_conn_module.c │ │ ├── ngx_http_limit_req_module.c │ │ ├── ngx_http_log_module.c │ │ ├── ngx_http_map_module.c │ │ ├── ngx_http_memcached_module.c │ │ ├── ngx_http_mp4_module.c │ │ ├── ngx_http_not_modified_filter_module.c │ │ ├── ngx_http_proxy_module.c │ │ ├── ngx_http_random_index_module.c │ │ ├── ngx_http_range_filter_module.c │ │ ├── ngx_http_realip_module.c │ │ ├── ngx_http_referer_module.c │ │ ├── ngx_http_rewrite_module.c │ │ ├── ngx_http_scgi_module.c │ │ ├── ngx_http_secure_link_module.c │ │ ├── ngx_http_slice_filter_module.c │ │ ├── ngx_http_split_clients_module.c │ │ ├── ngx_http_ssi_filter_module.c │ │ ├── ngx_http_ssi_filter_module.h │ │ ├── ngx_http_ssl_module.c │ │ ├── ngx_http_ssl_module.h │ │ ├── ngx_http_static_module.c │ │ ├── ngx_http_stub_status_module.c │ │ ├── ngx_http_sub_filter_module.c │ │ ├── ngx_http_upstream_hash_module.c │ │ ├── ngx_http_upstream_ip_hash_module.c │ │ ├── ngx_http_upstream_keepalive_module.c │ │ ├── ngx_http_upstream_least_conn_module.c │ │ ├── ngx_http_upstream_zone_module.c │ │ ├── ngx_http_userid_filter_module.c │ │ ├── ngx_http_uwsgi_module.c │ │ ├── ngx_http_xslt_filter_module.c │ │ └── perl │ │ │ ├── Makefile.PL │ │ │ ├── nginx.pm │ │ │ ├── nginx.xs │ │ │ ├── ngx_http_perl_module.c │ │ │ ├── ngx_http_perl_module.h │ │ │ └── typemap │ ├── ngx_http.c │ ├── ngx_http.h │ ├── ngx_http_cache.h │ ├── ngx_http_config.h │ ├── ngx_http_copy_filter_module.c │ ├── ngx_http_core_module.c │ ├── ngx_http_core_module.h │ ├── ngx_http_file_cache.c │ ├── ngx_http_header_filter_module.c │ ├── ngx_http_parse.c │ ├── ngx_http_postpone_filter_module.c │ ├── ngx_http_request.c │ ├── ngx_http_request.h │ ├── ngx_http_request_body.c │ ├── ngx_http_script.c │ ├── ngx_http_script.h │ ├── ngx_http_special_response.c │ ├── ngx_http_upstream.c │ ├── ngx_http_upstream.h │ ├── ngx_http_upstream_round_robin.c │ ├── ngx_http_upstream_round_robin.h │ ├── ngx_http_variables.c │ ├── ngx_http_variables.h │ ├── ngx_http_write_filter_module.c │ └── v2 │ │ ├── ngx_http_v2.c │ │ ├── ngx_http_v2.h │ │ ├── ngx_http_v2_filter_module.c │ │ ├── ngx_http_v2_huff_decode.c │ │ ├── ngx_http_v2_huff_encode.c │ │ ├── ngx_http_v2_module.c │ │ ├── ngx_http_v2_module.h │ │ └── ngx_http_v2_table.c │ ├── mail │ ├── ngx_mail.c │ ├── ngx_mail.h │ ├── ngx_mail_auth_http_module.c │ ├── ngx_mail_core_module.c │ ├── ngx_mail_handler.c │ ├── ngx_mail_imap_handler.c │ ├── ngx_mail_imap_module.c │ ├── ngx_mail_imap_module.h │ ├── ngx_mail_parse.c │ ├── ngx_mail_pop3_handler.c │ ├── ngx_mail_pop3_module.c │ ├── ngx_mail_pop3_module.h │ ├── ngx_mail_proxy_module.c │ ├── ngx_mail_smtp_handler.c │ ├── ngx_mail_smtp_module.c │ ├── ngx_mail_smtp_module.h │ ├── ngx_mail_ssl_module.c │ └── ngx_mail_ssl_module.h │ ├── misc │ ├── ngx_cpp_test_module.cpp │ └── ngx_google_perftools_module.c │ ├── os │ └── unix │ │ ├── ngx_alloc.c │ │ ├── ngx_alloc.h │ │ ├── ngx_atomic.h │ │ ├── ngx_channel.c │ │ ├── ngx_channel.h │ │ ├── ngx_daemon.c │ │ ├── ngx_darwin.h │ │ ├── ngx_darwin_config.h │ │ ├── ngx_darwin_init.c │ │ ├── ngx_darwin_sendfile_chain.c │ │ ├── ngx_dlopen.c │ │ ├── ngx_dlopen.h │ │ ├── ngx_errno.c │ │ ├── ngx_errno.h │ │ ├── ngx_file_aio_read.c │ │ ├── ngx_files.c │ │ ├── ngx_files.h │ │ ├── ngx_freebsd.h │ │ ├── ngx_freebsd_config.h │ │ ├── ngx_freebsd_init.c │ │ ├── ngx_freebsd_sendfile_chain.c │ │ ├── ngx_gcc_atomic_amd64.h │ │ ├── ngx_gcc_atomic_ppc.h │ │ ├── ngx_gcc_atomic_sparc64.h │ │ ├── ngx_gcc_atomic_x86.h │ │ ├── ngx_linux.h │ │ ├── ngx_linux_aio_read.c │ │ ├── ngx_linux_config.h │ │ ├── ngx_linux_init.c │ │ ├── ngx_linux_sendfile_chain.c │ │ ├── ngx_os.h │ │ ├── ngx_posix_config.h │ │ ├── ngx_posix_init.c │ │ ├── ngx_process.c │ │ ├── ngx_process.h │ │ ├── ngx_process_cycle.c │ │ ├── ngx_process_cycle.h │ │ ├── ngx_readv_chain.c │ │ ├── ngx_recv.c │ │ ├── ngx_send.c │ │ ├── ngx_setaffinity.c │ │ ├── ngx_setaffinity.h │ │ ├── ngx_setproctitle.c │ │ ├── ngx_setproctitle.h │ │ ├── ngx_shmem.c │ │ ├── ngx_shmem.h │ │ ├── ngx_socket.c │ │ ├── ngx_socket.h │ │ ├── ngx_solaris.h │ │ ├── ngx_solaris_config.h │ │ ├── ngx_solaris_init.c │ │ ├── ngx_solaris_sendfilev_chain.c │ │ ├── ngx_sunpro_amd64.il │ │ ├── ngx_sunpro_atomic_sparc64.h │ │ ├── ngx_sunpro_sparc64.il │ │ ├── ngx_sunpro_x86.il │ │ ├── ngx_thread.h │ │ ├── ngx_thread_cond.c │ │ ├── ngx_thread_id.c │ │ ├── ngx_thread_mutex.c │ │ ├── ngx_time.c │ │ ├── ngx_time.h │ │ ├── ngx_udp_recv.c │ │ ├── ngx_udp_send.c │ │ ├── ngx_user.c │ │ ├── ngx_user.h │ │ └── ngx_writev_chain.c │ └── stream │ ├── ngx_stream.c │ ├── ngx_stream.h │ ├── ngx_stream_access_module.c │ ├── ngx_stream_core_module.c │ ├── ngx_stream_handler.c │ ├── ngx_stream_limit_conn_module.c │ ├── ngx_stream_proxy_module.c │ ├── ngx_stream_ssl_module.c │ ├── ngx_stream_ssl_module.h │ ├── ngx_stream_upstream.c │ ├── ngx_stream_upstream.h │ ├── ngx_stream_upstream_hash_module.c │ ├── ngx_stream_upstream_least_conn_module.c │ ├── ngx_stream_upstream_round_robin.c │ ├── ngx_stream_upstream_round_robin.h │ └── ngx_stream_upstream_zone_module.c └── source insight configuration └── GLOBAL.CF3 /.gitignore: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/README.md -------------------------------------------------------------------------------- /doc/Nginx信号控制.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/Nginx信号控制.pdf -------------------------------------------------------------------------------- /doc/ngx_stream_access_module模块解析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/ngx_stream_access_module模块解析.pdf -------------------------------------------------------------------------------- /doc/ngx_stream_limit_conn_module模块解析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/ngx_stream_limit_conn_module模块解析.pdf -------------------------------------------------------------------------------- /doc/slab共享内存使用及实现原理简介.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/slab共享内存使用及实现原理简介.pdf -------------------------------------------------------------------------------- /doc/实例分析set命令及相关脚本引擎.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/实例分析set命令及相关脚本引擎.pdf -------------------------------------------------------------------------------- /doc/客户端非阻塞socket建链流程 .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/客户端非阻塞socket建链流程 .pdf -------------------------------------------------------------------------------- /doc/异步文件IO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/doc/异步文件IO.pdf -------------------------------------------------------------------------------- /nginx-1.10.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/CHANGES -------------------------------------------------------------------------------- /nginx-1.10.0/CHANGES.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/CHANGES.ru -------------------------------------------------------------------------------- /nginx-1.10.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/LICENSE -------------------------------------------------------------------------------- /nginx-1.10.0/README: -------------------------------------------------------------------------------- 1 | 2 | Documentation is available at http://nginx.org 3 | 4 | -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/acc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/acc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/bcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/ccc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/ccc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/clang -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/gcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/icc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/msvc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/name -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/owc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/owc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/cc/sunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/cc/sunc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/define -------------------------------------------------------------------------------- /nginx-1.10.0/auto/endianness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/endianness -------------------------------------------------------------------------------- /nginx-1.10.0/auto/feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/feature -------------------------------------------------------------------------------- /nginx-1.10.0/auto/have: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/have -------------------------------------------------------------------------------- /nginx-1.10.0/auto/have_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/have_headers -------------------------------------------------------------------------------- /nginx-1.10.0/auto/headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/headers -------------------------------------------------------------------------------- /nginx-1.10.0/auto/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/include -------------------------------------------------------------------------------- /nginx-1.10.0/auto/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/init -------------------------------------------------------------------------------- /nginx-1.10.0/auto/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/install -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/geoip/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/geoip/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/google-perftools/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/google-perftools/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libatomic/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/libatomic/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libatomic/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/libatomic/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libgd/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/libgd/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/libxslt/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/libxslt/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/md5/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/md5/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/md5/makefile.bcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/md5/makefile.msvc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/md5/makefile.owc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/md5/makefile.owc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/openssl/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/openssl/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/openssl/makefile.bcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/openssl/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/openssl/makefile.msvc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/pcre/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/pcre/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/pcre/makefile.bcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/pcre/makefile.msvc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/pcre/makefile.owc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/pcre/makefile.owc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/perl/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/perl/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/perl/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/perl/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/sha1/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/sha1/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/sha1/makefile.bcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/sha1/makefile.msvc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/sha1/makefile.owc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/sha1/makefile.owc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/test -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/zlib/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/zlib/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/zlib/makefile.bcc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/zlib/makefile.msvc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/lib/zlib/makefile.owc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/lib/zlib/makefile.owc -------------------------------------------------------------------------------- /nginx-1.10.0/auto/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/make -------------------------------------------------------------------------------- /nginx-1.10.0/auto/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/module -------------------------------------------------------------------------------- /nginx-1.10.0/auto/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/modules -------------------------------------------------------------------------------- /nginx-1.10.0/auto/nohave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/nohave -------------------------------------------------------------------------------- /nginx-1.10.0/auto/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/options -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/os/conf -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/os/darwin -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/os/freebsd -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/os/linux -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/solaris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/os/solaris -------------------------------------------------------------------------------- /nginx-1.10.0/auto/os/win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/os/win32 -------------------------------------------------------------------------------- /nginx-1.10.0/auto/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/sources -------------------------------------------------------------------------------- /nginx-1.10.0/auto/stubs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/stubs -------------------------------------------------------------------------------- /nginx-1.10.0/auto/summary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/summary -------------------------------------------------------------------------------- /nginx-1.10.0/auto/threads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/threads -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/sizeof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/types/sizeof -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/typedef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/types/typedef -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/uintptr_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/types/uintptr_t -------------------------------------------------------------------------------- /nginx-1.10.0/auto/types/value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/types/value -------------------------------------------------------------------------------- /nginx-1.10.0/auto/unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/auto/unix -------------------------------------------------------------------------------- /nginx-1.10.0/conf/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/fastcgi.conf -------------------------------------------------------------------------------- /nginx-1.10.0/conf/fastcgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/fastcgi_params -------------------------------------------------------------------------------- /nginx-1.10.0/conf/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/koi-utf -------------------------------------------------------------------------------- /nginx-1.10.0/conf/koi-win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/koi-win -------------------------------------------------------------------------------- /nginx-1.10.0/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/mime.types -------------------------------------------------------------------------------- /nginx-1.10.0/conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/nginx.conf -------------------------------------------------------------------------------- /nginx-1.10.0/conf/scgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/scgi_params -------------------------------------------------------------------------------- /nginx-1.10.0/conf/uwsgi_params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/uwsgi_params -------------------------------------------------------------------------------- /nginx-1.10.0/conf/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/conf/win-utf -------------------------------------------------------------------------------- /nginx-1.10.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/configure -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/README -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/geo2nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/geo2nginx.pl -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/unicode2nginx/koi-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/unicode2nginx/koi-utf -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/unicode2nginx/unicode-to-nginx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/unicode2nginx/unicode-to-nginx.pl -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/unicode2nginx/win-utf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/unicode2nginx/win-utf -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/vim/ftdetect/nginx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/vim/ftdetect/nginx.vim -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/vim/indent/nginx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/vim/indent/nginx.vim -------------------------------------------------------------------------------- /nginx-1.10.0/contrib/vim/syntax/nginx.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/contrib/vim/syntax/nginx.vim -------------------------------------------------------------------------------- /nginx-1.10.0/html/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/html/50x.html -------------------------------------------------------------------------------- /nginx-1.10.0/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/html/index.html -------------------------------------------------------------------------------- /nginx-1.10.0/man/nginx.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/man/nginx.8 -------------------------------------------------------------------------------- /nginx-1.10.0/objs/ngx_auto_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/objs/ngx_auto_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/objs/ngx_auto_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/objs/ngx_auto_headers.h -------------------------------------------------------------------------------- /nginx-1.10.0/objs/ngx_modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/objs/ngx_modules.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/nginx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/nginx.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/nginx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/nginx.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_array.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_array.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_buf.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_buf.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_conf_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_conf_file.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_conf_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_conf_file.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_connection.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_connection.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_core.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_cpuinfo.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_crc.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_crc32.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_crc32.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_crypt.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_crypt.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_cycle.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_cycle.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_file.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_file.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_hash.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_hash.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_inet.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_inet.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_list.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_list.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_log.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_log.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_md5.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_md5.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_murmurhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_murmurhash.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_murmurhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_murmurhash.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_open_file_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_open_file_cache.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_open_file_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_open_file_cache.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_output_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_output_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_palloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_palloc.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_palloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_palloc.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_parse.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_parse.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_parse_time.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_parse_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_parse_time.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_proxy_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_proxy_protocol.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_proxy_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_proxy_protocol.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_queue.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_queue.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_radix_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_radix_tree.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_radix_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_radix_tree.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_rbtree.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_rbtree.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_regex.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_regex.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_resolver.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_resolver.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_rwlock.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_rwlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_rwlock.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_sha1.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_shmtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_shmtx.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_shmtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_shmtx.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_slab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_slab.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_slab.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_spinlock.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_string.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_string.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_syslog.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_syslog.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_thread_pool.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_thread_pool.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_times.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/core/ngx_times.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/core/ngx_times.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_devpoll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_devpoll_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_epoll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_epoll_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_eventport_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_eventport_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_kqueue_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_kqueue_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_poll_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_poll_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_select_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_select_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/modules/ngx_win32_select_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/modules/ngx_win32_select_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_accept.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_connect.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_connect.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_openssl.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_openssl.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_openssl_stapling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_openssl_stapling.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_pipe.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_pipe.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_posted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_posted.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_posted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_posted.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_timer.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/event/ngx_event_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/event/ngx_event_timer.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_access_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_access_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_addition_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_addition_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_auth_basic_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_auth_basic_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_auth_request_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_auth_request_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_autoindex_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_autoindex_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_browser_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_browser_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_charset_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_charset_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_chunked_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_chunked_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_dav_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_dav_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_degradation_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_degradation_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_empty_gif_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_empty_gif_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_fastcgi_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_fastcgi_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_flv_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_flv_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_geo_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_geo_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_geoip_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_geoip_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_gunzip_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_gunzip_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_gzip_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_gzip_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_gzip_static_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_gzip_static_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_headers_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_headers_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_image_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_image_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_index_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_index_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_limit_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_limit_conn_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_limit_req_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_limit_req_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_log_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_log_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_map_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_map_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_memcached_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_memcached_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_mp4_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_mp4_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_not_modified_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_not_modified_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_proxy_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_random_index_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_random_index_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_range_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_range_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_realip_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_realip_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_referer_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_referer_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_rewrite_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_rewrite_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_scgi_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_scgi_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_secure_link_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_secure_link_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_slice_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_slice_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_split_clients_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_split_clients_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_ssi_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_ssi_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_ssi_filter_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_ssi_filter_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_ssl_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_ssl_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_static_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_static_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_stub_status_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_stub_status_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_sub_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_sub_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_upstream_hash_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_upstream_hash_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_upstream_ip_hash_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_upstream_ip_hash_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_upstream_keepalive_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_upstream_keepalive_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_upstream_least_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_upstream_least_conn_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_upstream_zone_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_upstream_zone_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_userid_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_userid_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_uwsgi_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_uwsgi_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/ngx_http_xslt_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/ngx_http_xslt_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/perl/Makefile.PL -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/nginx.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/perl/nginx.pm -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/nginx.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/perl/nginx.xs -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/ngx_http_perl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/perl/ngx_http_perl_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/ngx_http_perl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/modules/perl/ngx_http_perl_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/modules/perl/typemap: -------------------------------------------------------------------------------- 1 | TYPEMAP 2 | 3 | nginx T_PTROBJ 4 | -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_cache.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_copy_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_copy_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_core_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_core_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_core_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_file_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_file_cache.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_header_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_header_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_parse.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_postpone_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_postpone_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_request.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_request.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_request_body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_request_body.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_script.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_script.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_special_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_special_response.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_upstream.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_upstream.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream_round_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_upstream_round_robin.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_upstream_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_upstream_round_robin.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_variables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_variables.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_variables.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/ngx_http_write_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/ngx_http_write_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_filter_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2_filter_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_huff_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2_huff_decode.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_huff_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2_huff_encode.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/http/v2/ngx_http_v2_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/http/v2/ngx_http_v2_table.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_auth_http_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_auth_http_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_core_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_handler.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_imap_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_imap_handler.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_imap_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_imap_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_imap_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_imap_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_parse.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_pop3_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_pop3_handler.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_pop3_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_pop3_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_pop3_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_pop3_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_proxy_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_smtp_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_smtp_handler.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_smtp_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_smtp_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_smtp_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_smtp_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_ssl_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/mail/ngx_mail_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/mail/ngx_mail_ssl_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/misc/ngx_cpp_test_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/misc/ngx_cpp_test_module.cpp -------------------------------------------------------------------------------- /nginx-1.10.0/src/misc/ngx_google_perftools_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/misc/ngx_google_perftools_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_alloc.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_alloc.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_atomic.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_channel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_channel.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_channel.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_daemon.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_darwin.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_darwin_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_darwin_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_darwin_sendfile_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_darwin_sendfile_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_dlopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_dlopen.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_dlopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_dlopen.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_errno.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_errno.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_file_aio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_file_aio_read.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_files.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_files.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_freebsd.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_freebsd_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_freebsd_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_freebsd_sendfile_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_freebsd_sendfile_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_gcc_atomic_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_gcc_atomic_amd64.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_gcc_atomic_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_gcc_atomic_ppc.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_gcc_atomic_sparc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_gcc_atomic_sparc64.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_gcc_atomic_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_gcc_atomic_x86.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_linux.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_aio_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_linux_aio_read.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_linux_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_linux_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_linux_sendfile_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_linux_sendfile_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_os.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_posix_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_posix_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_posix_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_posix_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_process.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_process.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process_cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_process_cycle.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_process_cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_process_cycle.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_readv_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_readv_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_recv.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_send.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setaffinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_setaffinity.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setaffinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_setaffinity.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_setproctitle.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_setproctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_setproctitle.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_shmem.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_shmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_shmem.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_socket.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_socket.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_solaris.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_solaris_config.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_solaris_init.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_solaris_sendfilev_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_solaris_sendfilev_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_amd64.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_sunpro_amd64.il -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_atomic_sparc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_sunpro_atomic_sparc64.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_sparc64.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_sunpro_sparc64.il -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_sunpro_x86.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_sunpro_x86.il -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_thread.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_thread_cond.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_thread_id.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_thread_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_thread_mutex.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_time.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_time.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_udp_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_udp_recv.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_udp_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_udp_send.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_user.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_user.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/os/unix/ngx_writev_chain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/os/unix/ngx_writev_chain.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_access_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_access_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_core_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_core_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_handler.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_limit_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_limit_conn_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_proxy_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_proxy_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_ssl_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_ssl_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_ssl_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_ssl_module.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_hash_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream_hash_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_least_conn_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream_least_conn_module.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.c -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream_round_robin.h -------------------------------------------------------------------------------- /nginx-1.10.0/src/stream/ngx_stream_upstream_zone_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/nginx-1.10.0/src/stream/ngx_stream_upstream_zone_module.c -------------------------------------------------------------------------------- /source insight configuration/GLOBAL.CF3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TitenWang/nginx-comment/HEAD/source insight configuration/GLOBAL.CF3 --------------------------------------------------------------------------------