Skip to content

Instantly share code, notes, and snippets.

View xakrume's full-sized avatar
emerge -auDN @world

Ruslan Kh. xakrume

emerge -auDN @world
View GitHub Profile
@xakrume
xakrume / ffmpeg-installer.sh
Created April 13, 2016 12:28
ffmpeg-installer
#!/bin/bash
###############################################################################
# ffmpeg installer for centminmod.com LEMP stack
# based on instructions at https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
# http://git.videolan.org/?p=ffmpeg.git;a=blob;f=doc/APIchanges;hb=HEAD
###############################################################################
DIR_TMP=/svr-setup
OPT=/opt
DT=`date +"%d%m%y-%H%M%S"`
@xakrume
xakrume / nginx.conf
Created April 1, 2016 14:14 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
#!/bin/bash
# Taken from
# http://stackoverflow.com/questions/192249/how-do-i-parse-command-line-arguments-in-bash
OPTIND=1 # Reset in case getopts has been used previously in the shell.
# Initialize our own variables:
cookbooks_url="http://euca-chef.s3.amazonaws.com/eucalyptus-cookbooks-4.2.1.tgz"
nc_install_only=0

Run Netatalk in a SmartOS zone

This guide is based on this blog post: http://blog.smartcore.net.au/blazingly-fast-afp-on-a-smartos-zone/.

Import image and create virtual machine

Find the latest image, in this case 4166f6d6-ea5f-11e4-addd-8351b159d9b6 (15.1.0), or 24648664-e50c-11e4-be23-0349d0a5f3cf (14.4.1) if you need Long Term Support (LTS).

# imgadm avail | grep base-64
user bitrix; #пользователь, под которым работает nginx. Желательно совпадение с пользователем apache
worker_processes 8; #8 одновременных процессов
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
worker_rlimit_nofile 10240; #максимальное число открытых файлов
events {
use epoll;
worker_connections 10240; #максимальное число соединений с одним процессом. Система может одновременно работать с max_clients = worker_processes * worker_connections, т.е. с 81920 соединений, в том числе статических файлов
}
@xakrume
xakrume / gist:a0d6ec269027e2189a8a
Created April 22, 2015 09:47
3-rd round of root.yandex.com
To participate in the game it's necessary to:
1. a member of one of the finalist-teams
2. download the virtual machine image
3. decrypt it with the key: 595379f6ca9765f3a1c13962289c0b17
4. setup the network to Yandex VPN with your VPN config file
5. setup the network to Yandex VPN with your VPN config file inside "debian" VM
6. use "game" command on the virtual machine in order to check statuses of the following tasks:
PATH="$PATH:/usr/local/go/bin"
export GOBIN="$HOME/bin"
export PATH=$PATH:$HOME/bin
export GOPATH=/tmp
go get -u github.com/nsf/gocode
cd $GOPATH/src/github.com/nsf/gocode/vim/
./update.bash
[root@fifo ~]# leofs-adm status
[System config]
System version : 1.2.1
Cluster Id : leofs_1
DC Id : dc_1
Total replicas : 1
# of successes of R : 1
# of successes of W : 1
# of successes of D : 1
# of DC-awareness replicas : 0
# Install htop under SmartOS on Global Zone
#
pkgin -y in htop
mkdir /system/lxproc
mount -F lxproc lxproc /system/lxproc
echo "lxproc - /system/lxproc lxproc - yes -" >> /etc/vfstab
htop
options {
listen-on port 53 { 127.0.0.1; 10.0.0.111; };
# listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query { localhost; 10.0.0.1/24; };
recursion yes;