Skip to content

GeekOops/geekoops-apache

Repository files navigation

Test deployment

Port of geekoops-nginx to apache2

Configurable ansible role for setting up an apache2 webserver on a Linux server. Works with

  • openSUSE Leap 15.4 -> tested
  • Debian Buster
  • Debian Bookworm

Role Variables


You can set the following variables to configure the role. Here listed are the variables and their default settings.

Firewall configuration (disable by default)

Value Description Default
config_firewall Enable firewall configuration false
firewall_zone Firewall zone to configure "public"
open_http Open http port true
open_https Open https port true
setup_default_page Setup a default page false
default_page_hostname Hostname for the default page "localhost"

Example Playbook

Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:

- hosts: jellyfish
  roles:
     - { role: geekoops-apache, config_firewall: true }

An advanced example for the imaginary jellyfish test server

- hosts: jellyfish
  roles:
     - role: geekoops-apache
       vars:
         setup_default_page: true
         default_page_hostname: "{{ansible_host}}"
         config_firewall: true
         firewall_zone: "public"

License

MIT

Development

Add githooks

This repository ships pre-commit git hooks that will check the yaml syntax. To configure them do

git config --local core.hooksPath .githooks/