Skip to content

Instantly share code, notes, and snippets.

View jbarreraballestas's full-sized avatar
馃幆
Focusing

Jhordy Barrera jbarreraballestas

馃幆
Focusing
View GitHub Profile

Documentaci贸n personal sobre el uso de git y github

Git cycle

Ver las opciones para configuraci贸n de git

git config

Ver como est谩 configurado git

@jbarreraballestas
jbarreraballestas / redhat_laravel.txt
Last active September 30, 2022 01:27
RedHat: executed commands for install nginx php-fpm for use laravel
sudo yum update -y
sudo yum module list nginx
sudo yum module enable nginx:1.20
sudo yum install nginx -y
sudo firewall-cmd --permanent --add-port={80/tcp,443/tcp}
sudo systemctl enable nginx
sudo systemctl start nginx
sestatus
sudo firewall-cmd --list-ports
systemctl is-enabled nginx