YGGbro/nginx/opennet.ru/yggbro/opennet.ru/server.conf
2023-12-04 02:14:31 +02:00

18 lines
No EOL
441 B
Text

server {
# HTTP/IPv6 connections only
listen [::]:80 default_server; # make sure default_server not exists or throw an exception
# Yggdrasil connections only
allow 0200::/7;
deny all;
# Listen defaults
server_name _;
# Include handles
include /etc/yggbro/nginx/opennet.ru/yggbro/opennet.ru/handles/redirect.conf;
# Include available locations
include /etc/yggbro/nginx/opennet.ru/yggbro/opennet.ru/location.conf;
}