blob: ff3cd4052071b8dfa53c4abe942d676eecce557a [file] [log] [blame]
Zack Williamsb313bae2020-04-22 22:00:53 -07001---
2# nginx vars/Debian.yml
3#
4# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
5# SPDX-License-Identifier: Apache-2.0
6#
7# NOTE: Only put platform/OS-specific variables in this file.
8# Put all other variables in the 'defaults/main.yml' file.
9
10nginx_packages:
11 - "nginx"
12 - "python3-passlib"
13
14nginx_username: "www-data"
15nginx_groupname: "www-data"
16
17# name of the NGINX service
18nginx_service: "nginx"
19
20# Debian default settings
21nginx_conf_dir: "/etc/nginx"
22nginx_pid_file: "/run/nginx.pid"
23
24# logfile names must end in .log for logrotate (per /etc/logrotate.d/nginx)
25nginx_log_dir: "/var/log/nginx"
26
27# Not default. The /srv hierarchy is a good place for static sites.
28nginx_static_dir: "/srv/sites"
29
30# used for http basic auth .htpasswd files
31nginx_auth_basic_dir: "/srv/auth"