22 lines
335 B
Text
22 lines
335 B
Text
|
# CLEARNET
|
||
|
server {
|
||
|
server_name 4get.zzls.xyz;
|
||
|
include configs/general.conf;
|
||
|
include configs/ssl.conf;
|
||
|
include configs/security.conf;
|
||
|
|
||
|
location / {
|
||
|
return 301 https://4getus.zzls.xyz$request_uri;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
if ($host = 4get.zzls.xyz) {
|
||
|
return 301 https://$host$request_uri;
|
||
|
}
|
||
|
listen 80;
|
||
|
server_name 4get.zzls.xyz;
|
||
|
}
|