15 lines
265 B
Plaintext
15 lines
265 B
Plaintext
---
|
|
# file: group_vars/web
|
|
|
|
# run nginx by default
|
|
webserver: nginx
|
|
|
|
# all hosts run fail2ban with the sshd filter, but some can use other filters
|
|
extra_fail2ban_filters:
|
|
- nginx
|
|
|
|
# root prefix for all web servers
|
|
web_root_prefix: /var/www
|
|
|
|
# vim: set ts=2 sw=2:
|