|
a/vagrant/Vagrantfile.pkg |
|
b/vagrant/Vagrantfile.pkg |
|
... |
|
... |
13 |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
13 |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14 |
# KIND, either express or implied. See the License for the
|
14 |
# KIND, either express or implied. See the License for the
|
15 |
# specific language governing permissions and limitations
|
15 |
# specific language governing permissions and limitations
|
16 |
# under the License.
|
16 |
# under the License.
|
17 |
|
17 |
|
18 |
Vagrant::Config.run do |config|
|
18 |
Vagrant.configure("2") do |config|
|
19 |
# Forward Allura web port so you can browse the site at
|
19 |
# allura
|
20 |
# http://localhost:8080 (local port is the second number)
|
20 |
config.vm.network :forwarded_port, guest: 8080, host: 8080
|
21 |
config.vm.forward_port 8080, 8080
|
21 |
# solr
|
22 |
config.vm.forward_port 8983, 8983 # solr
|
22 |
config.vm.network :forwarded_port, guest: 8983, host: 8983
|
23 |
end
|
23 |
end
|