Here’s how you can install the Nginx web server on Alpine Linux:
- Open a terminal and log in to your Alpine Linux system.
- Update the package index:
apk update
- Install Nginx using the following command:
apk add nginx
- Start the Nginx service using the following command:
rc-service nginx start
- Enable Nginx to start automatically at boot:
rc-update add nginx default
Nginx should now be installed and running on your Alpine Linux system. You can access the default Nginx welcome page by visiting http://<your_server_ip>
in your web browser. Replace <your_server_ip>
with the IP address of your Alpine Linux system.