idealista / apache_httpd_role

Ansible role to install an Apache HTTP server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo

Build Status

Apache HTTP Server Ansible role

This Ansible role installs an Apache HTTP server in a Debian environment. The server is installed using the sources and loading just the predefined modules.

Getting Started

These instructions will get you a copy of the role for your Ansible playbook. Once launched, it will install a Apache HTTP Server in a Debian system.

It used to have the option to install logrotate but It has been deprecated. To install logrotate you should use our logrotate role.

Prerequisities

Ansible 5.2.0 version installed. Inventory destination should be a Debian environment, Stretch, Buster and Bullseye are supported.

Installing

Create or add to your roles dependency file (e.g requirements.yml):

- src: idealista.apache_httpd_role
  version: 3.2.0
  name: apache_httpd

Install the role with ansible-galaxy command:

ansible-galaxy install -p roles -r requirements.yml -f

Use in a playbook:

---
- hosts: someserver
  roles:
    - role: apache_httpd

Usage

Look to the defaults properties file to see the possible configuration properties.

Bear in mind that the role deploys the default Apache httdp config file. If you want to use yours (something that we strongly recommend), place it under the directory referred by the variable apache_extra_conf_template_path. If you need any inspiration, a good template to start with could be the one in tests/templates/apache/conf/httpd.conf.j2.

Testing

Install dependencies

$ pipenv sync

For more information read the pipenv docs.

Testing

$ pipenv run molecule test 

Built With

Ansible Molecule Goss

Versioning

For the versions available, see the tags on this repository.

Additionaly you can see what change in each version in the CHANGELOG.md file.

Authors

See also the list of contributors who participated in this project.

License

Apache 2.0 Licence

This project is licensed under the Apache 2.0 license - see the LICENSE file for details.

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

About

Ansible role to install an Apache HTTP server

License:Apache License 2.0


Languages

Language:Jinja 61.1%Language:YAML 38.9%