mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 04:49:40 +01:00
12 lines
930 B
YAML
12 lines
930 B
YAML
|
# Webserver Configuration
|
||
|
|
||
|
## Nginx-Specific Path Configurations
|
||
|
nginx_configuration_directory: "/etc/nginx/conf.d/" # General configuration dir
|
||
|
nginx_servers_directory: "{{nginx_configuration_directory}}servers/" # Contains server blogs
|
||
|
nginx_maps_directory: "{{nginx_configuration_directory}}maps/" # Contains mappins
|
||
|
nginx_streams_directory: "{{nginx_configuration_directory}}streams/" # Contains streams configuration e.g. for ldaps
|
||
|
nginx_well_known_root: "/usr/share/nginx/well-known/" # Path where well-known files are stored
|
||
|
nginx_homepage_root: "/usr/share/nginx/homepage/" # Path where the static homepage files are stored
|
||
|
|
||
|
## Nginx static repository
|
||
|
nginx_static_repository_address: NULL #This should contain the url to an git repository which has a static homepage included and an index.html file
|