Comandos Útiles

Permisos de archivos y directorios:

# Permisos de archivos
chmod 644 /var/www/html -R
chmod 644 * -R
find * -type f -exec chmod -R 644 {} \;

# Permisos de directorios
find /var/www/html -type d -exec chmod 755 {} \;
find * -type d -exec chmod 755 {} \;

WARNING: UNPROTECTED PRIVATE KEY FILE!

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0755 for 'keyfilename' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.

# chmod 400 keyfilename