I hereby claim:
- I am dannycoates on github.
- I am antiserf (https://keybase.io/antiserf) on keybase.
- I have a public key whose fingerprint is A47A B66F A105 C2FF 7B94 D2A4 2C5D E6D9 E52B D826
To claim this, I am signing this object:
| { | |
| "_index": "alllogs-2014-03-12", | |
| "_type": "message", | |
| "_id": "842s_JjTRd6B5WIRHAd5jQ", | |
| "_score": 0.044194173, | |
| "_source": { | |
| "Uuid": "4cd5808c-5c7a-48f0-aa0e-ac91e4fc654f", | |
| "Timestamp": "2014-03-12T02:11:54.868Z", | |
| "Type": "request.summary", | |
| "Logger": "fxa-auth-server", |
I hereby claim:
To claim this, I am signing this object:
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "hashicorp/precise64" | |
| config.vm.network "private_network", type: "dhcp" | |
| end |
| { | |
| "AWSTemplateFormatVersion" : "2010-09-09", | |
| "Description" : "Single machine Fxa Dev environment", | |
| "Parameters" : { | |
| "KeyName": { | |
| "Description" : "Name of an existing EC2 KeyPair to enable SSH access to the web server", | |
| "Type": "String", | |
| "MinLength": "1", |
| -- This Source Code Form is subject to the terms of the Mozilla Public | |
| -- License, v. 2.0. If a copy of the MPL was not distributed with this | |
| -- file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| require "math" | |
| require "string" | |
| local alert = require "alert" | |
| local message_variable = read_config("message_variable") or error("must specify a 'message_variable'") | |
| local max_items = read_config("max_items") or 25000 |
| user nginx; | |
| worker_processes 1; | |
| error_log /var/log/nginx/error.log; | |
| #error_log /var/log/nginx/error.log notice; | |
| #error_log /var/log/nginx/error.log info; | |
| pid /var/run/nginx.pid; | |