ansible-role-apache/README.md

65 lines
2.5 KiB
Markdown
Raw Normal View History

2014-02-28 23:37:55 +01:00
# Ansible Role: Apache 2.x
2014-02-28 23:22:50 +01:00
2014-04-22 14:40:26 +02:00
[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-apache.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-apache)
An Ansible Role that installs Apache 2.x on RHEL/CentOS and Debian/Ubuntu.
2014-02-28 23:22:50 +01:00
## Requirements
None.
## Role Variables
2014-02-28 23:39:31 +01:00
Available variables are listed below, along with default values (see `vars/main.yml`):
2014-02-28 23:22:50 +01:00
2014-03-14 17:28:08 +01:00
apache_enablerepo: ""
The repository to use when installing Apache (only used on RHEL/CentOS systems). If you'd like later versions of Apache than are available in the OS's core repositories, use a repository like EPEL (which can be installed with the `geerlingguy.repo-epel` role).
2014-03-14 17:28:08 +01:00
2014-02-28 23:22:50 +01:00
apache_listen_port: 80
The port on which apache should be listening. Useful if you have another service (like a reverse proxy) listening on port 80.
apache_create_vhosts: true
If set to true, a vhosts file, managed by this role's variables (see below), will be created and placed in the Apache configuration folder. If set to false, you can place your own vhosts file into Apache's configuration folder and skip the convenient (but more basic) one added by this role.
2014-02-28 23:22:50 +01:00
apache_vhosts:
# Additional optional properties: 'serveradmin, extra_parameters'.
- {servername: "local.dev", documentroot: "/var/www/html"}
Add a set of properties per virtualhost, including `servername` (required), `documentroot` (required), `serveradmin` (optional: the admin email address for this server), and `extra_parameters` (you can add whatever you'd like in here).
Note that this role doesn't configure SSL support out of the box; you would need to add in additional tasks to listen on port 443 and add your own VirtualHost directives for SSL. This may be improved in the future :)
## Dependencies
2014-03-14 17:28:08 +01:00
None.
2014-02-28 23:22:50 +01:00
## Example Playbook
- hosts: webservers
vars_files:
- vars/main.yml
roles:
- { role: geerlingguy.apache }
*Inside `vars/main.yml`*:
apache_listen_port: 8080
apache_vhosts:
- {servername: "example.com", documentroot: "/var/www/vhosts/example_com"}
On Debian/Ubuntu hosts, if you get the error `Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?`, You should add a task to make sure your apt_cache is up to date, like:
2014-03-01 03:42:25 +01:00
- name: Update apt cache if needed.
apt: update_cache=yes cache_valid_time=3600
2014-03-01 03:42:25 +01:00
2014-02-28 23:22:50 +01:00
## License
MIT / BSD
## Author Information
2014-04-21 19:59:08 +02:00
This role was created in 2014 by [Jeff Geerling](http://jeffgeerling.com/), author of [Ansible for DevOps](http://ansiblefordevops.com/).