NginX on Linux Stream 10 delivers a high-performance, lightweight web server and reverse proxy, ensuring fast and secure web hosting for modern applications.

This is a quick deployment and ready-to-run image.
Simple and rapid installation. Easy to maintain.
Connection to NginX on Linux Stream 10
To work, you should open ports 22, and 80 (TCP) in the network properties in the Amazon firewall. After purchasing and starting the VM, you should know its IP address. You can find it in Amazon’s account.
To connect to the Server, you should generate a “Private Key” in advance. This can be done using the following instructions (by choosing the “file format:” option “.ppk” in point 3) Guide – How To – Create and use Key Pair to connect to a VM
- Connecting to the VM using the PuTTY application. You can download it at the following link – Download
- Go to section SSH on the left panel, and then to Auth
- In the “Auth” section, click “Browse” and specify the path to the .ppk file you received earlier.
- Go to the home page of “Session”, enter the IP address of the VM, and click “Open”.
- In the opened console, you will need to enter the login ec2-user
- To check that NginX is up and running and get the list of all running nginx processes, enter the command
ps -ax | grep nginx
Once nginx is started, it can be controlled by invoking the executable with the -s parameter. Use the following syntax:
nginx -s signal
Where signal may be one of the following:
- stop — fast shutdown
- quit — graceful shutdown
- reload — reloading the configuration file
- reopen — reopening the log files
- To know the NginX version and get help enter nginx -h
- Entering http://*VM_IP* in a browser window opens a test server page
More documentation about NginX here – Beginner’s Guide
Get answer your question – FAQ