etc-configs/nginx/conf.d/4get.zzls.xyz.fallback.conf

22 lines
335 B
Text
Raw Normal View History

2023-12-21 15:17:35 -03:00
# CLEARNET
server {
server_name 4get.zzls.xyz;
include configs/general.conf;
include configs/security.conf;
location / {
return 301 https://4getus.zzls.xyz$request_uri;
}
2023-12-21 16:12:45 -03:00
listen 443 ssl;
http2 on;
2023-12-21 15:17:35 -03:00
}
server {
if ($host = 4get.zzls.xyz) {
return 301 https://$host$request_uri;
}
listen 80;
server_name 4get.zzls.xyz;
}