-
Notifications
You must be signed in to change notification settings - Fork 0
NGINX Web Server windows installation
SunilOS edited this page Mar 5, 2023
·
4 revisions
- Download the latest stable version of Nginx from the official website https://nginx.org/en/download.html. Choose the Windows version and download the zip file.
- Extract the contents of the zip file to a directory on your system, for example, C:\nginx.
- Open a Command Prompt window as an administrator.
- Navigate to the Nginx directory using the command: cd C:\nginx
- Run the command: nginx.exe to start Nginx.
- Open a web browser and navigate to http://localhost. If Nginx is running correctly, you will see the Nginx welcome page.
- To stop Nginx, open a Command Prompt window as an administrator and navigate to the Nginx directory. Run the command: nginx.exe -s stop That's it! You have successfully installed Nginx on Windows. You can now use it as a web server or a reverse proxy.