Skip to content

Instantly share code, notes, and snippets.

View vieresjoki's full-sized avatar
🦄

vieresjoki

🦄
View GitHub Profile

Keybase proof

I hereby claim:

  • I am vieresjoki on github.
  • I am vieresjoki (https://keybase.io/vieresjoki) on keybase.
  • I have a public key ASCt_BoHSOd-inwngpb58zR-zEcaBYSXs-PZIFwnRTaypAo

To claim this, I am signing this object:

@vieresjoki
vieresjoki / Drupal_Environment_Drush.sh
Last active March 20, 2017 07:16 — forked from malcolmp/Drupal_Environment_Drush.sh
Drush scripts for managing site updates and configuration
#In PRODUCTION
## This script will run against all @sites. Be patient or use --uri=<domain> instead to just run on a specific site.
## Set performance variables
drush @sites vset cache 1 -y;
drush @sites vset block_cache 1 -y;
drush @sites vset cache_lifetime 300 -y;
drush @sites vset page_cache_maximum_age 300 -y;
drush @sites vset preprocess_css 1 -y;
drush @sites vset preprocess_js 1 -y;
drush @sites vset error_level 0 -y;