This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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)' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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; |
OlderNewer