Skip to content

Commit 1b5ee18

Browse files
author
Nick
committed
NGINX IS HERE 😲 ✊
0 parents  commit 1b5ee18

File tree

4 files changed

+1198
-0
lines changed

4 files changed

+1198
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
.vagrant

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
# Scotch Box Pro (NGINX)
3+
4+
Just a Dead-Simple Local LAMP/LEMP Stack for Vagrant. **Making Vagrant EASY AS EATING CAKE for developers.**
5+
6+
![Scotch Box](https://box.scotch.io/img/pro-banner.png)
7+
8+
Scotch Box is a pre-configured Vagrant Box with a full array of features to get you up and running with Vagrant in no time.
9+
10+
11+
## License Required?
12+
13+
This is a paid version of the original Scotch Box. [Go Pro Now!](https://box.scotch.io/pro)
14+
15+
16+
## Pro Features
17+
18+
* Ubuntu 16.04!
19+
* PHP 7!
20+
* MySQL 5.7!
21+
* NGNIX Option!
22+
* Go lang in the box
23+
* PHPUnit in the box
24+
* Yarn
25+
* Improved email catching with MailHog
26+
* Vagrant Share working nicely finally
27+
* The box's build scripts
28+
* Customize your own boxes in minutes
29+
* Generally higher versions of things (Node.js, Ruby, etc.)!
30+
31+
![Scotch Box](https://box.scotch.io/img/terminal.png)
32+
33+
## Documentation
34+
35+
* Check out the official docs at: [box.scotch.io][https://box.scotch.io]
36+
* [Read the getting started article](https://scotch.io/bar-talk/introducing-scotch-box-a-vagrant-lamp-stack-that-just-works)
37+
* [Read the 2.0 release article](https://scotch.io/bar-talk/announcing-scotch-box-2-0-our-dead-simple-vagrant-lamp-stack-improved)
38+
* [Read the 2.5 release article](https://scotch.io/bar-talk/announcing-scotch-box-2-5)
39+
40+
41+
## More Information
42+
43+
Check-out [box.scotch.io](https://box.scotch.io) to learn more.

Vagrantfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# -*- mode: ruby -*-
2+
# vi: set ft=ruby :
3+
4+
Vagrant.configure("2") do |config|
5+
6+
config.vm.box = "scotch/box-pro-nginx"
7+
config.vm.hostname = "scotchbox"
8+
config.vm.network "forwarded_port", guest: 80, host: 8080
9+
config.vm.network "private_network", ip: "192.168.33.10"
10+
config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"]
11+
12+
# Optional NFS. Make sure to remove other synced_folder line too
13+
#config.vm.synced_folder ".", "/var/www", :nfs => { :mount_options => ["dmode=777","fmode=666"] }
14+
15+
end

public/index.php

Lines changed: 1138 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)