Windows下安装Nginx
在官网选择nginx/Windows-相应版本
下载,解压下载的压缩包到相应目录即可。
服务配置
Nginx本身不带服务注册,可以结合winsw、nssm做成Windows服务。
关于默认启用模块
不同于linux下,在源码编译时指定需要启用的模块,windows下的nginx默认开启了大多的模块。
powershell
PS D:\tools\nginx-1.22.1> .\nginx.exe -V
nginx version: nginx/1.22.1
built by cl 16.00.30319.01 for 80x86
built with OpenSSL 1.1.1q 5 Jul 2022
TLS SNI support enabled
configure arguments: --with-cc=cl --builddir=objs.msvc8 --with-debug --prefix= --conf-path=conf/nginx.conf
--pid-path=logs/nginx.pid --http-log-path=logs/access.log --error-log-path=logs/error.log --sbin-path=nginx.exe
--http-client-body-temp-path=temp/client_body_temp --http-proxy-temp-path=temp/proxy_temp --http-fastcgi-temp-path=temp/fastcgi_temp
--http-scgi-temp-path=temp/scgi_temp --http-uwsgi-temp-path=temp/uwsgi_temp --with-cc-opt=-DFD_SETSIZE=1024 --with-pcre=objs.msvc8/lib/pcre2-10.39
--with-zlib=objs.msvc8/lib/zlib-1.2.12
--with-http_v2_module --with-http_realip_module --with-http_addition_module --with-http_sub_module
--with-http_dav_module --with-http_stub_status_module --with-http_flv_module --with-http_mp4_module
--with-http_gunzip_module --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module
--with-http_secure_link_module --with-http_slice_module --with-mail --with-stream
--with-openssl=objs.msvc8/lib/openssl-1.1.1q --with-openssl-opt='no-asm no-tests -D_WIN32_WINNT=0x0501'
--with-http_ssl_module --with-mail_ssl_module --with-stream_ssl_module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16