-
Notifications
You must be signed in to change notification settings - Fork 11
/
webservers.yml
37 lines (33 loc) · 1012 Bytes
/
webservers.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This playbook contains tasks to perform on an installation of various web
# server.
#
# Copyright (c) 2013-2020 Fabian Affolter <[email protected]>
#
# Licensed under CC BY 3.0. All rights reserved.
#
---
- hosts: fsl-tb
user: root
vars_files:
- variables/application-versions.yml
- variables/sensitive.yml
tasks:
# Common tasks
- include: tasks/preparation.yml
- include: tasks/motd.yml
# Web server tasks
- include: tasks/webserver/lighttpd.yml
- include: tasks/webserver/apache.yml
# - include: tasks/webserver/cherokee.yml
- include: tasks/webserver/droopy.yml
- include: tasks/webserver/nginx.yml
- include: tasks/webserver/tomcat.yml
- include: tasks/webserver/pywebserve.yml
- include: tasks/webserver/mongoose.yml
- include: tasks/webserver/nodejs.yml
- include: tasks/webserver/darkhttpd.yml
# Common tasks
- include: tasks/cleanup.yml
handlers:
- include: handlers/system.yml
- include: handlers/services.yml