Files
zira-etc/nginx/conf.d/ganool/nginx/vhosts.d/mylinkgen.com.conf
2021-05-24 22:18:33 +03:00

16 lines
242 B
Plaintext

server {
access_log off;
error_log off;
listen 8197;
listen 80;
server_name mylinkgen.com www.mylinkgen.com;
location / {
if ($http_host ~* "^(www\.)?mylinkgen\.com$"){
rewrite ^(.*)$ https://linkgen.st redirect;
}
}
}