Skip to content

Instantly share code, notes, and snippets.

View s-belichenko's full-sized avatar

Stas B. s-belichenko

  • Russia, Mocsow
View GitHub Profile
@s-belichenko
s-belichenko / xdebug.ini
Last active September 22, 2018 11:48
xdebug for php (5-7)
#xdebug. See also: https://habrahabr.ru/sandbox/20485/
xdebug.default_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_enable = 1
xdebug.remote_handler = dbgp
xdebug.idekey = "PHPSTORM"
xdebug.remote_host = 192.168.1.x
xdebug.remote_port = 9000
@s-belichenko
s-belichenko / .htaccess
Last active October 14, 2017 18:32
xdebug for php7
<IfModule mod_php7.c>
php_flag xdebug.default_enable on
php_flag xdebug.remote_autostart on
php_flag xdebug.remote_enable on
php_value xdebug.remote_handler "dbgp"
php_value xdebug.idekey "PHPSTORM"
php_value xdebug.remote_host "192.168.1.x"
php_value xdebug.remote_port "9000"
@s-belichenko
s-belichenko / Vagrantfile-1.9.5-and-earler
Last active September 23, 2018 13:17
scotch/box non specific vagrant file
# -*- mode: ruby -*-
# vi: set ft=ruby :
#########################################################
#
# Vagrant file v1.2.0 for scotch/box
# Vagrant version: 1.9.5 and earler
#
#########################################################
@s-belichenko
s-belichenko / bootstrap-scotch3.0.0-php7.0.sh
Last active March 15, 2018 09:56
Preparing Vagrant box via bootstrap script (scotch/box 3.0.0, purpose: php 7.0)
#!/bin/bash
#########################################################
#
# Bootstrap script v1.0.7 for Vagrant scotch/box 3.0.0 (Ubuntu 14.04.5 LTS)
# Purpose: PHP 7.0
#
#########################################################
echo "==================== Set up php vars ======================"
@s-belichenko
s-belichenko / .htaccess
Last active October 17, 2017 21:22
common PHP settings
php_value post_max_size "100M"
php_value upload_max_filesize "100M"
@s-belichenko
s-belichenko / bootstrap-scotch-common.sh
Last active August 13, 2018 21:55
Preparing Vagrant box via bootstrap script (box: scotch/box 2.5.0, 3.0.0, purpose: common)
#!/bin/bash
#########################################################
#
# Bootstrap script v1.0.6 for Vagrant scotch/box 3.0.0-3.5.0
# Purpose: Common
#
#########################################################
echo "========================== Common =========================="
@s-belichenko
s-belichenko / bootstrap-scotch3.0.0_apache2+php5.6.sh
Last active September 30, 2018 21:57
Preparing Vagrant box via bootstrap script (scotch/box 3.0.0, purpose: php 5.6)
#!/bin/bash
#########################################################
#
# Bootstrap script v0.0.4 for Vagrant scotch/box 3.0.0
# Purpose: PHP 5.6
#
#########################################################
echo "================ Switching php7.0 to php5.6 ================"
@s-belichenko
s-belichenko / bootstrap-scotch2.5.0-apache2-php5.6.sh
Last active September 29, 2018 19:35
Preparing Vagrant box via bootstrap script (scotch/box 2.5.0, purpose: apache2 + php 5.6)
#!/bin/bash
#########################################################
#
# Bootstrap script v1.0.2 for Vagrant scotch/box 2.5.0
# Purpose: Apache 2 + PHP 5.6
#
#########################################################
echo "==================== Set up php vars ======================"
@s-belichenko
s-belichenko / bootstrap-scotch3.5.0-apache2-php7.2.sh
Last active September 29, 2018 19:33
Preparing Vagrant box via bootstrap script (scotch/box 3.5.0, purpose: apache2 + php 7.2)
#!/bin/bash
#########################################################
#
# Bootstrap script v1.0.2 for Vagrant scotch/box 3.5.0 (Ubuntu 16.04.2 LTS)
# Purpose: PHP 7.2
#
#########################################################
echo "================== Installing PHP 7.2 ====================="
@s-belichenko
s-belichenko / bootstrap-scotch3.5.0-apache2-php7.0.sh
Last active September 29, 2018 19:32
Preparing Vagrant box via bootstrap script (scotch/box 3.5.0, purpose: apache2 + php 7.0)
#!/bin/bash
#########################################################
#
# Bootstrap script v1.0.1 for Vagrant scotch/box 3.5.0 (Ubuntu 16.04.2 LTS)
# Purpose: PHP 7.0
#
#########################################################
echo "==================== Set up php vars ======================"