Todo bien, pero creo que deberías darle uso a los droplets ya creados y no crear nuevos que no seria una practica correcta.
Introducción a Digital Ocean y las IaaS
¿Qué es Digital Ocean?
¿Cuándo usar Digital Ocean?
Registro en Digital Ocean
¿Qué es un Droplet?
Storage: Volumes y Spaces
Marketplace de Digital Ocean
Configuraciones de un Droplet
Activar 2FA en Digital Ocean
Panel de Control, Projects y Access
Volumes y Power
Resize (Escalamiento vertical)
Networking y Firewall
Backups y Snapshots
Kernel
History y Destroy
Tags, Recovery y Graphs
API de Digital Ocean
Conociendo una API
Cómo generar una API Key en Digital Ocean
Creación de Droplet por API
Despliegue de un servidor web
Instalación de Nginx en un Droplet
Recomendaciones
Instalación de PHP en un Droplet
Instalación de Mysql en un Droplet
Instalación de Wordpress en un Droplet
Despliegue de un servidor VPN
Instalación de un servidor OpenVPN en un Droplet
Instalación y configuración del cliente
Conclusiones
Conclusiones finales del curso
You don't have access to this class
Keep learning! Join and start boosting your career
Whether you are planning to improve your current technical skills or start a new project in a more secure and efficient way, installing Wordpress on a server with a proper architecture is an excellent starting point. By following a structure where your web server runs PHP and the other one manages your data in isolation, we significantly increase the security of web applications. We will guide you through the initial steps to set up an environment with Nginx and other essential components.
First, let's start by creating a new droplet, which will be the core of our web server:
This last step of private networking automates the configuration of the network interface, making the process simpler and more secure.
This facilitates the organization and administration of the server, helping us to quickly identify its purpose.
Once you have created your droplet, it is time to access it:
Copy the IP address of the created server.
Use the console to log in with the root
user:
ssh root@<IP_address>
When logging in, it will ask you if you trust the security key; answer yes to access the server.
It is crucial to start by updating the repositories and software on our server so that everything works with the latest versions:
Run a repository update:
apt-get update
Then, update the existing applications:
apt-get upgrade
This update will ensure that your server is ready for new installations and configurations.
Nginx is a powerful web server that will handle HTTP requests:
Install Nginx with the following command:
apt-get install nginx
Confirm the installation when prompted and wait for the process to finish.
Once installed, check the status of Nginx to make sure it is running:
Check with the following command:
systemctl status nginx
Next, open a browser, enter the server's IP and you should see a welcome message confirming that Nginx is running successfully.
These initial steps lead to creating a solid foundation for your web server. I encourage you to continue to learn and expand your server administration skills. Properly configuring your environment is the first step towards secure and efficient management of your web projects.
Contributions 6
Questions 2
Todo bien, pero creo que deberías darle uso a los droplets ya creados y no crear nuevos que no seria una practica correcta.
Yo estoy teniendo problemas con nginx , tengo un error 504, ya he seguido millones de guías para solucionarlo y nada, ya no se que más configurar.
Hola, en este caso, a la fecha no me apareció la opción de “Private networking”, ¿alguna otra opción similar?
Para poder tener un servidor para hostear sitios es necesario tener 3 dropplet montados ?
apt-get upgrade puede actualizar todo el sistema no lo hagan.
cool
Want to see more contributions, questions and answers from the community?