| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 | # Dashboardhttps://dashboard.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	# Apply basic security headers	header {		# Enable cross origin access to *.{$NM_DOMAIN}		Access-Control-Allow-Origin *.{$NM_DOMAIN}		# Enable HTTP Strict Transport Security (HSTS)		Strict-Transport-Security "max-age=31536000;"		# Enable cross-site filter (XSS) and tell browser to block detected attacks		X-XSS-Protection "1; mode=block"		# Disallow the site to be rendered within a frame on a foreign domain (clickjacking protection)		X-Frame-Options "SAMEORIGIN"		# Prevent search engines from indexing		X-Robots-Tag "none"		# Remove the server name		-Server	}	reverse_proxy http://netmaker-ui}# Netmaker Exporterhttps://netmaker-exporter.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy http://netmaker-exporter:8085}# Prometheushttps://prometheus.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy http://prometheus:9090}# Grafanahttps://grafana.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy http://grafana:3000}# APIhttps://api.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy http://netmaker:8081}# STUNhttps://stun.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy netmaker:3478}# TURNhttps://turn.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy host.docker.internal:3479}# TURN APIhttps://turnapi.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy http://host.docker.internal:8089}# MQwss://broker.{$NM_DOMAIN} {	tls /root/certs/fullchain.pem /root/certs/privkey.pem	reverse_proxy ws://mq:8883}
 |