Skip to content

Commit b280c78

Browse files
author
erika
committed
Updated readmes
1 parent b53387f commit b280c78

File tree

2 files changed

+26
-10
lines changed

2 files changed

+26
-10
lines changed

README.md

+24-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A collection of minimalist Ansible playbooks for automating server setups, based
77
- [LEMP on Ubuntu 18.04](https://github.com/do-community/ansible-playbooks/tree/master/lemp_ubuntu1804)
88
- [Docker on Ubuntu 18.04](https://github.com/do-community/ansible-playbooks/tree/master/docker_ubuntu1804)
99

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._
1111

1212
## Playbook Structure
1313

@@ -34,18 +34,34 @@ lemp_ubuntu1804
3434
- `playbook.yml`: the playbook file.
3535
- `readme.md`: instructions and links related to this playbook.
3636

37-
## Essential Reading
37+
## Getting Started
3838

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).
4040

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
4342

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:
4560

4661
### 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*
4965

5066
### Containers & K8s
5167
- [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)

apache_ubuntu1804/readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Apache on Ubuntu 18.04
22

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.
44

55
## Settings
66

@@ -43,4 +43,4 @@ disable_default: true
4343
ansible-playbook -l [target] -i [inventory file] -u [remote user] playbook.yml
4444
```
4545

46-
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

Comments
 (0)