Re: [mezzanine-users] fab all runs, but cannot access mezzanine admin page

2014-03-03 Thread Jesse Carrigan
I tried forwarding a port from my host machine and got the same result. With localhost:8080 forwarded to 80 on the guest machine, I get the message from ngnix. Forwarding localhost:8080 to 8000, I get no response. -- You received this message because you are subscribed to the Google Groups

Re: [mezzanine-users] fab all runs, but cannot access mezzanine admin page

2014-03-03 Thread Stephen McDonald
You shouldn't need to do any of that. Here's my vagrantfile: Vagrant.configure(2) do |config| config.vm.box = precise64 config.vm.network :private_network, ip: 10.10.10.10 end Forget the ports. Your vagrant vm is synonymous with a production server - you're deploying to it, and the various

[mezzanine-users] fab all runs, but cannot access mezzanine admin page

2014-03-02 Thread Jesse Carrigan
I'm hoping someone can help me. I've been trying for months to get Mezzanine running on anything other than local (I gave up on it a while ago and finally decided to try again recently). I've been following Ken Bolton's excellent instructions, which introduced me to Vagrant (and for which I'm

Re: [mezzanine-users] fab all runs, but cannot access mezzanine admin page

2014-03-02 Thread Ken Bolton
Jesse, See inline, below. On Sun, Mar 2, 2014 at 8:47 PM, Jesse Carrigan jesse.m.carri...@gmail.com wrote: I've been following Ken Bolton's excellent instructions, which introduced me to Vagrant (and for which I'm very grateful - it's a fantastic tool). Thank you for your kind words. I