2025-01-29 14:20:34 +01:00
|
|
|
# Webserver Configuration
|
|
|
|
|
|
|
|
## Nginx-Specific Path Configurations
|
2025-01-31 13:14:07 +01:00
|
|
|
nginx:
|
|
|
|
directories:
|
2025-02-19 22:03:17 +01:00
|
|
|
configuration: "/etc/nginx/conf.d/" # Configuration directory
|
|
|
|
http:
|
|
|
|
global: "/etc/nginx/conf.d/http/global/" # Contains global configurations which will be loaded into the http block
|
|
|
|
servers: "/etc/nginx/conf.d/http/servers/" # Contains one configuration per domain
|
|
|
|
maps: "/etc/nginx/conf.d/http/maps/" # Contains mappings
|
|
|
|
streams: "/etc/nginx/conf.d/streams/" # Contains streams configuration e.g. for ldaps
|
|
|
|
data:
|
|
|
|
well_known: "/usr/share/nginx/well-known/" # Path where well-known files are stored
|
|
|
|
html: "/var/www/public_html/" # Path where the static homepage files are stored
|
|
|
|
files: "/var/www/public_files/" # Path where the web accessable files are stored
|
|
|
|
global: "/var/www/global/" # Directory containing files which will be globaly accessable
|
|
|
|
user: "http" # Default nginx user in ArchLinux
|
2025-01-29 14:20:34 +01:00
|
|
|
|
2025-02-19 02:00:41 +01:00
|
|
|
## Matomo Tracking
|
2025-02-19 22:03:17 +01:00
|
|
|
global_matomo_tracking_enabled: false # Activates matomo tracking on all html pages. Change this in inventory.
|