Skip to content

Instantly share code, notes, and snippets.

@jklein
Last active September 19, 2018 10:18
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jklein/6992296 to your computer and use it in GitHub Desktop.
Save jklein/6992296 to your computer and use it in GitHub Desktop.
Vagrant file for a private WebPagetest instance
# -*- mode: ruby -*-
# vi: set ft=ruby :
# 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|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "webpagetest-2-12"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
config.vm.box_url = "https://dl.dropboxusercontent.com/u/3249984/vagrant_boxes/webpagetest.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
config.vm.network :forwarded_port, guest: 80, host: 8080
end
@jklein
Copy link
Author

jklein commented Oct 17, 2013

This image only has one test result on it - just check the box to "Show tests from all users" and expand out the timeline until you find it!

@joaovicente
Copy link

Hi Jonathan. Thanks for sharing the VM. Could you please share the username/password for ssh access? Thanks, Joao.

@aaylward
Copy link

@joaovicente do vagrant ssh

@svasil
Copy link

svasil commented Jul 14, 2014

@jklein
I was trying to run private WebPagetest instance at my VMWare vagrant instance, and error was

The box you attempted to add doesn't match the provider you specified.
Provider expected: hyperv
Provider of box: virtualbox

Did you configure your
https://dl.dropboxusercontent.com/u/3249984/vagrant_boxes/webpagetest.box
specifically for virtual box?

@kesava
Copy link

kesava commented Nov 4, 2015

I can start a test on localhost, but test just waits in queue, never seems to start executing. How can I debug this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment