YGGbro/nginx/opennet/server.conf

15 lines
287 B
Plaintext
Raw Normal View History

server {
# HTTP/IPv6 connections only
2023-12-03 19:23:01 +02:00
listen [::]:80;
# Yggdrasil connections only
2023-12-03 19:23:01 +02:00
allow 0200::/7;
deny all;
# Include handles
include /etc/yggbro/nginx/opennet/handles/redirect.conf;
# Include available locations
2023-12-03 19:23:01 +02:00
include /etc/yggbro/nginx/opennet/locations.conf;
}