Installation on Windows
choco install nginx (Chocolatey) installs Nginx under C:\tools\nginx. Alternatively, download the official ZIP from nginx.org and unzip it anywhere. Verify with nginx -v.
Starting and stopping
Windows Nginx is not a system service. From the install directory, launch it with start nginx, reload the config with nginx -s reload, and stop it with nginx -s stop. To run it as a real Windows service, wrap it with NSSM or WinSW.
Configuration and logs
The configuration is C:\tools\nginx\conf\nginx.conf, the document root C:\tools\nginx\html, and logs are under C:\tools\nginx\logs. Validate changes with nginx -t before reloading.