You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+24-8
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ A collection of minimalist Ansible playbooks for automating server setups, based
7
7
-[LEMP on Ubuntu 18.04](https://github.com/do-community/ansible-playbooks/tree/master/lemp_ubuntu1804)
8
8
-[Docker on Ubuntu 18.04](https://github.com/do-community/ansible-playbooks/tree/master/docker_ubuntu1804)
9
9
10
-
_\*the Initial Server Setup should be your starting point for fresh servers.*_
10
+
_\*the Initial Server Setup should be your starting point for fresh servers._
11
11
12
12
## Playbook Structure
13
13
@@ -34,18 +34,34 @@ lemp_ubuntu1804
34
34
-`playbook.yml`: the playbook file.
35
35
-`readme.md`: instructions and links related to this playbook.
36
36
37
-
## Essential Reading
37
+
## Getting Started
38
38
39
-
To get up and running fast, you can go straight to our guide on [How to Install and Configure Ansible on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04).
39
+
To set up your Ansible environment, please follow our guide on [How to Install and Configure Ansible on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04).
40
40
41
-
After making sure you are able to connect to your nodes from an Ansible control machine, you can start with the [Initial Server Setup]() Ansible guide
42
-
for the [setup playbook](https://github.com/do-community/ansible-playbooks/tree/master/setup_ubuntu1804).
41
+
### Connection Test
43
42
44
-
Once you have run the initial server setup, you can choose from any of the available server setup playbooks:
43
+
From your local machine or Ansible control node, run:
44
+
45
+
```command
46
+
ansible all -m ping -u remote_user
47
+
```
48
+
49
+
If you're able to get a "pong" reply back from your node(s), you are good to proceed.
50
+
51
+
## Guides
52
+
53
+
The following guides cover how to use the playbooks you'll find in this repository.
54
+
55
+
### Initial Server Setup
56
+
57
+
-[Initial Server Setup for Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-ansible-on-ubuntu-18-04)
58
+
59
+
Once you have executed the initial server setup, you can choose from any of the available server setup playbooks:
45
60
46
61
### Web Servers
47
-
-[Apache on Ubuntu 18.04]()*soon*
48
-
-[LEMP on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-lemp-on-ubuntu-18-04)
62
+
-[Apache on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-apache-on-ubuntu-18-04)
63
+
-[LEMP (Linux, Nginx, MySQL, PHP) on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-lemp-on-ubuntu-18-04)
64
+
-[LAMP (Linux, Apache, MySQL, PHP) on Ubuntu 18.04](#)*soon*
49
65
50
66
### Containers & K8s
51
67
-[Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-docker-on-ubuntu-18-04)
Copy file name to clipboardexpand all lines: apache_ubuntu1804/readme.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Apache on Ubuntu 18.04
2
2
3
-
This playbook will install the Apache 2 web server on an Ubuntu 18.04 machine, as explained in the guide on [How to Use Ansible to Install and Configure Apache on Ubuntu 18.04". A virtualhost will be created with the options specified in the `vars/default.yml` variable file.
3
+
This playbook will install the Apache 2 web server on an Ubuntu 18.04 machine, as explained in the guide on [How to Use Ansible to Install and Configure Apache on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-apache-on-ubuntu-18-04). A virtualhost will be created with the options specified in the `vars/default.yml` variable file.
For more information on how to run this Ansible setup, please check this guide: [soon]().
46
+
For more information on how to run this Ansible setup, please check this guide: [How to Use Ansible to Install and Configure Apache on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-use-ansible-to-install-and-set-up-apache-on-ubuntu-18-04).
0 commit comments