blob: 2e821781ab3a4071fd7313ff0e0f1c4fc5975526 [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"
Zack Williamsd3a69fd2022-05-15 11:52:40 -070013 - "procps" # needed as debian initscripts call /bin/kill and others
Zack Williamsb313bae2020-04-22 22:00:53 -070014
15nginx_username: "www-data"
16nginx_groupname: "www-data"
17
18# name of the NGINX service
19nginx_service: "nginx"
20
21# Debian default settings
22nginx_conf_dir: "/etc/nginx"
23nginx_pid_file: "/run/nginx.pid"
24
25# logfile names must end in .log for logrotate (per /etc/logrotate.d/nginx)
26nginx_log_dir: "/var/log/nginx"
27
28# Not default. The /srv hierarchy is a good place for static sites.
29nginx_static_dir: "/srv/sites"
30
31# used for http basic auth .htpasswd files
32nginx_auth_basic_dir: "/srv/auth"