Skip to content

Instantly share code, notes, and snippets.

@frknikiz
frknikiz / vundle-code-formatter-installer.sh
Created January 8, 2019 14:09
vundle-code-formatter-installer
#!/usr/bin/env bash
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim;
touch ~/.vimrc;
VIMRCFILE=`cat <<EOF
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim

Nginx Tuning For Best Performance

For this configuration you can use web server you like, i decided, because i work mostly with it to use nginx.

Generally, properly configured nginx can handle up to 400,000 to 500,000 requests per second (clustered), most what i saw is 50,000 to 80,000 (non-clustered) requests per second and 30% CPU load, course, this was 2xIntel Xeon with HT enabled, but it can work without problem on slower machines.

You must understand that this config is used in testing environment and not in production so you will need to find a way to implement most of those features best possible for your servers.

First, you will need to install nginx, my way to install nginx is compiling it from source, but for now we will use apt-get

@frknikiz
frknikiz / ThrottleRequests.php
Created February 4, 2016 13:42
Rate Limiter Middleware for Laravel 5.1
<?php
namespace App\Http\Middleware;
use App\Exceptions\ThrottleException;
use Closure;
use Illuminate\Cache\RateLimiter;
use Response;
use RuntimeException;
@frknikiz
frknikiz / supervisord.conf
Last active August 29, 2015 14:24
Supervisor Centos Conf File Example
[supervisord]
http_port=/var/tmp/supervisor.sock ; (default is to run a UNIX domain socket server)
;http_port=127.0.0.1:9001 ; (alternately, ip_address:port specifies AF_INET)
;sockchmod=0700 ; AF_UNIX socketmode (AF_INET ignore, default 0700)
;sockchown=nobody.nogroup ; AF_UNIX socket uid.gid owner (AF_INET ignores)
;umask=022 ; (process file creation umask;default 022)
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile_maxbytes=50MB ; (max main logfile bytes b4 rotation;default 50MB)
logfile_backups=10 ; (num of main logfile rotation backups;default 10)
loglevel=info ; (logging level;default info; others: debug,warn)
@frknikiz
frknikiz / gist:f7d67238fc7d360b4f46
Created July 12, 2015 23:56
Vestacp Php update
sudo apt-get update
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php5-oldstable
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install php-pear php5-cli php5-common php5-curl php5-dev php5-gd php5-mcrypt php5-mysql php5-pgsql php5-xdebug
@frknikiz
frknikiz / Vagrantfile
Created June 15, 2015 10:16
Nodejs vagrant file example(Laravel homestead)
Vagrant::Config.run do |config|
config.vm.box = "laravel/homestead"
config.vm.box_url = "https://atlas.hashicorp.com/laravel/boxes/homestead"
config.vm.forward_port 3000, 3000
config.vm.share_folder "app", "/home/vagrant/app", "app"
end
@frknikiz
frknikiz / start.php
Created June 5, 2015 23:03
Bootstrap/start.php env //Laravel Environment global setting
$env = $app->detectEnvironment(array(
//'local' => array('homestead'),
'local' => array('*.dev', gethostname()),
'production' => array('*.com', '*.net', 'www.somedomain.com')
));