-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial commit * Updated Readme * Added asset logo * Logo change * Added logo on read me * Update logo position * Updated read me * Change logo to banner * Change filename * Update README.md * Update README.md
- Loading branch information
Showing
12 changed files
with
111 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
class WebCommand < Vagrant.plugin(2, :command) | ||
def self.synopsis | ||
"Provisions only web related roles" | ||
end | ||
|
||
def execute | ||
exec("vagrant provision --provision-with web") | ||
end | ||
end | ||
|
||
class NginxCommand < Vagrant.plugin(2, :command) | ||
def self.synopsis | ||
"Provisions only nginx" | ||
end | ||
|
||
def execute | ||
exec("vagrant provision --provision-with nginx") | ||
end | ||
end | ||
|
||
class MyPlugin < Vagrant.plugin(2) | ||
name "Custom command plugin" | ||
|
||
command "web" do | ||
WebCommand | ||
end | ||
|
||
command "nginx" do | ||
NginxCommand | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
- hosts: all | ||
become: yes | ||
|
||
vars_files: | ||
- ../sites.yml | ||
- vars/nginx.params.yml | ||
|
||
roles: | ||
- geerlingguy.nginx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
- hosts: all | ||
become: yes | ||
|
||
vars_files: | ||
- ../sites.yml | ||
- vars/firewall.yml | ||
- vars/nginx.params.yml | ||
- vars/php.yml | ||
|
||
roles: | ||
- AerisCloud.repos | ||
- init | ||
- geerlingguy.firewall | ||
- geerlingguy.nginx | ||
- geerlingguy.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
nginx_vhosts: | ||
- listen: "80" | ||
server_name: "drupal.local" | ||
root: "/var/www/html/Drupal" | ||
index: "index.php" | ||
extra_parameters: "{{ nginx_params_drupal }}" | ||
|
||
- listen: "80" | ||
server_name: "symfony.local" | ||
root: "/var/www/html/Symfony" | ||
index: "app.php" | ||
extra_parameters: "{{ nginx_params_symfony }}" |