# Ansible Setup for PHP Project

This directory contains Ansible configurations, playbooks, and roles used to manage and deploy the PHP project.

## Directory Structure

- **inventories/**: Contains the inventory files that list the servers managed by Ansible.
- **playbooks/**: Contains Ansible playbooks that define the tasks to be executed on the servers.
- **roles/**: Contains reusable Ansible roles that can be shared across multiple playbooks.
- **group_vars/** and **host_vars/**: Used to define variables that apply to groups of hosts or individual hosts.
- **ansible.cfg**: The Ansible configuration file that specifies settings such as inventory location and roles path.

## Prerequisites

Before running Ansible, ensure you have the following:

- **Ansible** installed on your local machine. You can install it using `pip`:

  ```bash
  pip install ansible