Skip to content

Instantly share code, notes, and snippets.

View brandontamm's full-sized avatar
💭
Accepting Remote Opportunities

Brandon Tamm brandontamm

💭
Accepting Remote Opportunities
View GitHub Profile
@brandontamm
brandontamm / nginx.conf
Created February 9, 2016 16:55 — forked from seanogdev/nginx.conf
Server : 4 Core. 8GB RAM, 80GB SSD, with 20GB free :: Traffic ~1.2m pv per month. php 5.5.18
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
worker_rlimit_nofile 1024;
events {
worker_connections 4096;
#multi_accept on;
}
@brandontamm
brandontamm / percona-my.cnf
Created February 18, 2016 21:33 — forked from tegansnyder/percona-my.cnf
my.cnf percona test
[client]
port = 3306
socket = /var/lib/mysql/mysql.sock
[mysqld]
server-id = 1
port = 3306
datadir = /var/lib/mysql
socket = /var/lib/mysql/mysql.sock
pid-file = /var/run/mysqld/mysqld.pid
@brandontamm
brandontamm / 1step-Install-Deployer-Magento2-BitbucketPipelines.md
Created June 20, 2023 19:59 — forked from rafaelstz/1step-Install-Deployer-Magento2-BitbucketPipelines.md
Automated deploy using Magento 2 + Bitbucket Pipelines + Deployer

Use both files in your root folder and run:

curl -LO https://deployer.org/deployer.phar && sudo mv deployer.phar /usr/local/bin/dep && sudo chmod +x /usr/local/bin/dep
composer require deployer/recipes --dev
composer require rafaelstz/deployer-magento2 dev-master --dev