Skip to content

Instantly share code, notes, and snippets.

View andrefy's full-sized avatar

Andres Yajamin andrefy

  • Ecuador
View GitHub Profile
@andrefy
andrefy / info.md
Created July 9, 2018 21:03
Drupal Notes

Drupal Notes

@andrefy
andrefy / git_notes.md
Created May 22, 2018 05:34
Git Notes

#Git Notes

@andrefy
andrefy / 0_reuse_code.js
Created June 29, 2017 05:07
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@andrefy
andrefy / drupal8_dev_environment.md
Created November 21, 2016 23:04
Drupal 8 development environment

Drupal 8 Development

Global notes about Drupal development

Development Environment Settings

Default settings file

Include local configuration file

@andrefy
andrefy / wordpress_updateperlinks.php
Created September 21, 2016 17:12
Wordpress update base url, permalinks
@andrefy
andrefy / wordpress_nginx.conf
Created September 21, 2016 17:11
Wordpress Nginx
# WordPress single site rules.
# Designed to be included in any server {} block.
# This order might seem weird - this is attempted to match last if rules below fail.
# http://wiki.nginx.org/HttpCoreModule
location / {
try_files $uri $uri/ /index.php?$args;
}
# Add trailing slash to */wp-admin requests.
@andrefy
andrefy / drupal_nginx.conf
Created September 21, 2016 16:58
Drupal Nginx settings
#Specify a charset
charset utf-8;
# set client body size to 2M #
client_max_body_size 2M;
location = /favicon.ico {
log_not_found off;
access_log off;
}