stubbornella / oocss

Object Oriented CSS Framework

Home Page:http://stubbornella.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

User wants to modify the port in their dev environment

stubbornella opened this issue · comments

Right now the port is set to 8080, some users may not have localhost:8080 available, they should be able to set the port for the vagrant install

go to the /vagrantfile and open it in a notepad

where it says:

=== box config ===

config.vm.network :forwarded_port, guest: 80, host: 8080

change the 8080 to a different port of your liking (note: you must keep guest: 80 as that it what is being forwarded from the vm)

This example is for http://localhost:7878 from our browser

=== box config ===

config.vm.network :forwarded_port, guest: 80, host: 7878

hope that helps ;)

oh and don't forget to restart you vagrant instance

@arnogues - Can you document this please in the readme?