I hereby claim:
- I am reiz on github.
- I am reiz (https://keybase.io/reiz) on keybase.
- I have a public key whose fingerprint is B7DA 775A C2FE 5D35 8FB8 6FF6 4D08 59C9 8DAC 1206
To claim this, I am signing this object:
upstream matomo { | |
server 127.0.0.1:8080; | |
} | |
server { | |
listen 80; | |
rewrite_log on; | |
server_name matomo.server.com; |
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad | |
alias ls='ls -GFh' | |
alias ll='ls -all' |
# Removes all dangling Containers | |
docker rm $(docker ps -q -f status=exited) | |
docker rmi `docker images -aq` |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
//Create all needed imports | |
import java.io.UnsupportedEncodingException; | |
import java.net.URLEncoder; | |
import java.util.List; | |
import com.cloudrail.exception.CloudRailException; | |
import com.cloudrail.userInterface.TextOnUpdate; | |
//These two are the event listeners for the functions in our Custom CloudRail API |
<?xml version="1.0" encoding="UTF-8"?> | |
<changelog> | |
<revision_base>https://github.com/versioneye/versioneye_maven_plugin/commit/</revision_base> | |
<changeset datePattern="yyyyMMdd HH:mm:ss z" startVersion="3.5.0" endVersion="3.5.1"> | |
<changelog-entry> | |
<date pattern="yyyy-MM-dd">2015-06-30</date> | |
<time pattern="HH:mm:ss">15:33:16</time> | |
<author><![CDATA[Robert Reiz <[email protected]>]]></author> | |
<file> | |
<action>modified</action> |
--- | |
- name: Create new instance | |
hosts: localhost | |
connection: local | |
remote_user: ubuntu | |
gather_facts: false | |
vars: | |
keypair: "id_rsa.pub" | |
instance_type: t2.medium |
--- | |
- hosts: app_server_1 | |
user: ubuntu | |
sudo: true | |
roles: | |
- docker_rails_app_build | |
- hosts: app_loadbalancer | |
user: ubuntu |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.provider "virtualbox" do |vb| | |
vb.gui = true | |