YGGbro/nginx/opennet/server.conf
2023-12-03 19:23:01 +02:00

15 lines
287 B
Plaintext

server {
# HTTP/IPv6 connections only
listen [::]:80;
# Yggdrasil connections only
allow 0200::/7;
deny all;
# Include handles
include /etc/yggbro/nginx/opennet/handles/redirect.conf;
# Include available locations
include /etc/yggbro/nginx/opennet/locations.conf;
}