在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → nginx1.9.9 vs2015 完整项目

nginx1.9.9 vs2015 完整项目

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:1.20M
  • 下载次数:0
  • 浏览次数:66
  • 发布时间:2020-10-30
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
nginx1.909的windows64位vs2015编译代码, 原始地址:https://github.com/AlexStocks/nginx-vs2015
【实例截图】
【核心代码】
nginx-vs2015-master
└── nginx-vs2015-master
├── auto
│   ├── cc
│   │   ├── acc
│   │   ├── bcc
│   │   ├── ccc
│   │   ├── clang
│   │   ├── conf
│   │   ├── gcc
│   │   ├── icc
│   │   ├── msvc
│   │   ├── name
│   │   ├── owc
│   │   └── sunc
│   ├── configure
│   ├── 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
│   │   └── patch.zlib.h
│   ├── make
│   ├── modules
│   ├── nohave
│   ├── options
│   ├── os
│   │   ├── conf
│   │   ├── darwin
│   │   ├── freebsd
│   │   ├── linux
│   │   ├── solaris
│   │   └── win32
│   ├── sources
│   ├── stubs
│   ├── summary
│   ├── 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
├── docs
│   ├── dtd
│   │   ├── change_log_conf.dtd
│   │   └── changes.dtd
│   ├── GNUmakefile
│   ├── html
│   │   ├── 50x.html
│   │   └── index.html
│   ├── man
│   │   └── nginx.8
│   ├── text
│   │   ├── LICENSE
│   │   └── README
│   ├── xml
│   │   ├── change_log_conf.xml
│   │   └── nginx
│   │   └── changes.xml
│   ├── xsls
│   │   └── changes.xsls
│   └── xslt
│   └── changes.xslt
├── html
│   ├── 50x.html
│   └── index.html
├── LICENSE
├── Makefile
├── man
│   └── nginx.8
├── misc
│   ├── GNUmakefile
│   └── README
├── nginx.sln
├── objs
│   ├── autoconf.err
│   ├── Makefile
│   ├── ngx_auto_config.h
│   ├── ngx_auto_headers.h
│   ├── ngx_modules.c
│   └── ngx_pch.c
├── README
├── README.bak
├── 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_crc32.c
│   │   ├── ngx_crc32.h
│   │   ├── ngx_crc.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_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_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_sha1.h
│   │   ├── ngx_shmtx.c
│   │   ├── ngx_shmtx.h
│   │   ├── ngx_slab.c
│   │   ├── ngx_slab.h
│   │   ├── ngx_spinlock.c
│   │   ├── ngx_string.c
│   │   ├── ngx_string.h
│   │   ├── ngx_times.c
│   │   └── ngx_times.h
│   ├── event
│   │   ├── modules
│   │   │   ├── ngx_aio_module.c
│   │   │   ├── ngx_devpoll_module.c
│   │   │   ├── ngx_epoll_module.c
│   │   │   ├── ngx_eventport_module.c
│   │   │   ├── ngx_iocp_module.c
│   │   │   ├── ngx_iocp_module.h
│   │   │   ├── ngx_kqueue_module.c
│   │   │   ├── ngx_poll_module.c
│   │   │   ├── ngx_rtsig_module.c
│   │   │   ├── ngx_select_module.c
│   │   │   └── ngx_win32_select_module.c
│   │   ├── ngx_event_accept.c
│   │   ├── ngx_event_acceptex.c
│   │   ├── ngx_event_busy_lock.c
│   │   ├── ngx_event_busy_lock.h
│   │   ├── ngx_event.c
│   │   ├── ngx_event_connect.c
│   │   ├── ngx_event_connectex.c
│   │   ├── ngx_event_connect.h
│   │   ├── ngx_event.h
│   │   ├── ngx_event_mutex.c
│   │   ├── 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_geoip_module.c
│   │   │   ├── ngx_http_geo_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_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_ip_hash_module.c
│   │   │   ├── ngx_http_upstream_keepalive_module.c
│   │   │   ├── ngx_http_upstream_least_conn_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_busy_lock.c
│   │   ├── ngx_http_busy_lock.h
│   │   ├── ngx_http.c
│   │   ├── 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.h
│   │   ├── ngx_http_header_filter_module.c
│   │   ├── ngx_http_parse.c
│   │   ├── ngx_http_parse_time.c
│   │   ├── ngx_http_postpone_filter_module.c
│   │   ├── ngx_http_request_body.c
│   │   ├── ngx_http_request.c
│   │   ├── ngx_http_request.h
│   │   ├── ngx_http_script.c
│   │   ├── ngx_http_script.h
│   │   ├── ngx_http_spdy.c
│   │   ├── ngx_http_spdy_filter_module.c
│   │   ├── ngx_http_spdy.h
│   │   ├── ngx_http_spdy_module.c
│   │   ├── ngx_http_spdy_module.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
│   ├── mail
│   │   ├── ngx_mail_auth_http_module.c
│   │   ├── ngx_mail.c
│   │   ├── ngx_mail_core_module.c
│   │   ├── ngx_mail.h
│   │   ├── 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
│   ├── mysql
│   │   ├── config
│   │   ├── ngx_http_mysql_test.c
│   │   ├── ngx_mysql.c
│   │   └── ngx_mysql.h
│   └── os
│   ├── unix
│   │   ├── ngx_aio_read.c
│   │   ├── ngx_aio_read_chain.c
│   │   ├── ngx_aio_write.c
│   │   ├── ngx_aio_write_chain.c
│   │   ├── ngx_alloc.c
│   │   ├── ngx_alloc.h
│   │   ├── ngx_atomic.h
│   │   ├── ngx_channel.c
│   │   ├── ngx_channel.h
│   │   ├── ngx_daemon.c
│   │   ├── ngx_darwin_config.h
│   │   ├── ngx_darwin.h
│   │   ├── ngx_darwin_init.c
│   │   ├── ngx_darwin_sendfile_chain.c
│   │   ├── ngx_errno.c
│   │   ├── ngx_errno.h
│   │   ├── ngx_file_aio_read.c
│   │   ├── ngx_files.c
│   │   ├── ngx_files.h
│   │   ├── ngx_freebsd_config.h
│   │   ├── ngx_freebsd.h
│   │   ├── ngx_freebsd_init.c
│   │   ├── ngx_freebsd_rfork_thread.c
│   │   ├── ngx_freebsd_rfork_thread.h
│   │   ├── 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_aio_read.c
│   │   ├── ngx_linux_config.h
│   │   ├── ngx_linux.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_cycle.c
│   │   ├── ngx_process_cycle.h
│   │   ├── ngx_process.h
│   │   ├── ngx_pthread_thread.c
│   │   ├── 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_config.h
│   │   ├── ngx_solaris.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_time.c
│   │   ├── ngx_time.h
│   │   ├── ngx_udp_recv.c
│   │   ├── ngx_user.c
│   │   ├── ngx_user.h
│   │   ├── ngx_writev_chain.c
│   │   └── rfork_thread.S
│   └── win32
│   ├── nginx.ico
│   ├── nginx_icon16.xpm
│   ├── nginx_icon32.xpm
│   ├── nginx_icon48.xpm
│   ├── nginx.rc
│   ├── ngx_alloc.c
│   ├── ngx_alloc.h
│   ├── ngx_atomic.h
│   ├── ngx_errno.c
│   ├── ngx_errno.h
│   ├── ngx_event_log.c
│   ├── ngx_files.c
│   ├── ngx_files.h
│   ├── ngx_os.h
│   ├── ngx_process.c
│   ├── ngx_process_cycle.c
│   ├── ngx_process_cycle.h
│   ├── ngx_process.h
│   ├── ngx_service.c
│   ├── ngx_shmem.c
│   ├── ngx_shmem.h
│   ├── ngx_socket.c
│   ├── ngx_socket.h
│   ├── ngx_stat.c
│   ├── ngx_thread.c
│   ├── ngx_thread.h
│   ├── ngx_time.c
│   ├── ngx_time.h
│   ├── ngx_udp_wsarecv.c
│   ├── ngx_user.c
│   ├── ngx_user.h
│   ├── ngx_win32_config.h
│   ├── ngx_win32_init.c
│   ├── ngx_wsarecv.c
│   ├── ngx_wsarecv_chain.c
│   ├── ngx_wsasend.c
│   └── ngx_wsasend_chain.c
└── win
├── conf
│   ├── fastcgi.conf
│   ├── fastcgi_params
│   ├── koi-utf
│   ├── koi-win
│   ├── mime.types
│   ├── nginx.conf
│   ├── scgi_params
│   ├── uwsgi_params
│   └── win-utf
├── generate
│   ├── ngx_auto_config.h
│   ├── ngx_auto_headers.h
│   ├── ngx_modules.c
│   └── ngx_pch.c
├── html
│   ├── 50x.html
│   └── index.html
├── logs
│   ├── access.log
│   ├── error.log
│   └── nginx.pid
├── nginx-1.9.9.sdf
├── nginx-1.9.9.vcxproj
└── nginx-1.9.9.vcxproj.filters

49 directories, 445 files

标签:

实例下载地址

nginx1.9.9 vs2015 完整项目

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警