Skip to content

Instantly share code, notes, and snippets.

View ricsiga's full-sized avatar

Richárd Tóth ricsiga

View GitHub Profile
@ricsiga
ricsiga / log.conf
Last active January 10, 2024 20:14
add hostname to nginx access.log
log_format vhost '$host - $remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" $request_time';
access_log /var/log/nginx/access.log vhost;
@ricsiga
ricsiga / Vagrantfile
Created August 29, 2018 11:00
Vagrat file template
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/xenial64" #ubuntu/xenial64
config.vm.network "private_network", ip: "10.0.100.102"
config.vm.network "public_network", bridge: 'en0: Wi-Fi (AirPort)'
@ricsiga
ricsiga / Dockerfile
Last active April 6, 2018 12:04
Varnish 3.0 with Docker on Debian Squeeze
FROM debian:squeeze
RUN echo "deb http://archive.debian.org/debian squeeze main" > /etc/apt/sources.list
RUN echo "deb http://archive.debian.org/debian squeeze-lts main" >> /etc/apt/sources.list
RUN echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf
RUN apt-get update && apt-get install -y --force-yes procps vim nano tmux curl supervisor
RUN curl -s https://packagecloud.io/install/repositories/varnishcache/varnish30/script.deb.sh | bash
RUN apt-get update && apt-get install -y --force-yes varnish
@ricsiga
ricsiga / create_random_files.sh
Created February 11, 2018 19:19
create random files
#! /bin/bash
numberOfDirs=10
numberOfFiles=10
blockSize=100
for d in $(seq 1 $numberOfDirs); do
mkdir dir$(printf %03d "$d")
for n in $(seq 1 $numberOfFiles); do
dd if=/dev/urandom of=dir$(printf %03d "$d")/file$(printf %03d "$n").bin bs=$blockSize count=$((RANDOM + 1024)) 2> /dev/null
@ricsiga
ricsiga / lock.sh
Last active September 9, 2020 21:02
BASH lock file example
#!/usr/bin/env bash
set -e
lockFile="/var/tmp/app.lock"
if ( set -o noclobber; echo "locked" > "$lockFile") 2> /dev/null; then
trap 'rm -f "$lockFile"; exit $?' INT TERM EXIT
else
echo "Can't get file lock, $(basename "$0") already running" >&2
@ricsiga
ricsiga / installNetdataWithAnsible.sh
Last active June 27, 2020 03:46
install Netdata with Ansible
#!/usr/bin/env bash
ansible -s -i inventoryFile -m shell -a "curl -Ss -o kickstart-static64.sh https://my-netdata.io/kickstart-static64.sh" all
ansible -s -i inventoryFile -m shell -a "chmod 750 kickstart-static64.sh" all
ansible -s -i inventoryFile -m shell -a "./kickstart-static64.sh --non-interactive" all
@ricsiga
ricsiga / Dockerfile
Last active April 5, 2017 15:14
Build and install latest netdata (https://my-netdata.io/)
FROM ubuntu:16.04
# System upgrade
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y apt-utils
RUN apt-get upgrade -y
# Install packages and build netdata
RUN apt-get install -y zlib1g-dev uuid-dev libmnl-dev gcc make git autoconf autoconf-archive autogen automake pkg-config curl
@ricsiga
ricsiga / kibana.service
Created January 20, 2017 16:22
kibana systemd service file
[Unit]
Description=Kibana
After=network.target
[Service]
ExecStart=/workspace/kibana/bin/kibana
Type=simple
PIDFile=/var/run/kibana.pid
Restart=always
@ricsiga
ricsiga / crontab
Last active April 28, 2017 13:38
letsencrypt nginx redirect
# renew letsenrcypt cert
30 2 * * 1 /usr/bin/letsencrypt renew >> /var/log/le-renew.log
35 2 * * 1 /bin/systemctl reload nginx
@ricsiga
ricsiga / squeeze.dockerfile
Last active September 7, 2022 06:27
Debian Squeeze Dockerfile example
FROM debian:squeeze
RUN echo "deb http://archive.debian.org/debian squeeze main" > /etc/apt/sources.list
RUN echo "deb http://archive.debian.org/debian squeeze-lts main" >> /etc/apt/sources.list
RUN echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf
RUN apt-get update
RUN apt-get install -y --force-yes procps vim nano tmux curl
CMD ["/bin/bash"]