Habilitar compresión gzip en nginx

Aquí están los pasos para habilitar compresión gzip en nginx: 1. Create the file: /etc/nginx/conf.d/gzip.conf Enter the following: gzip on; gzip_comp_level 9; gzip_min_length 1400; gzip_proxied

Leer más »

Buenas prácticas en WordPress

Para evitar pirateos de versiones no actualizadas: vi /var/www/vhosts/DOMINIO.com/httpdocs/wp-config.php // ACTIVAR ACTUALIZACIONES DE WP define(‘WP_AUTO_UPDATE_CORE’, true); add_filter( ‘auto_update_plugin’, ‘__return_true’ ); add_filter( ‘auto_update_theme’, ‘__return_true’ ); https://www.siteground.com/tutorials/wordpress/auto-update.htm

Leer más »