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

17 lines
322 B
Plaintext

server {
access_log off;
error_log off;
listen 8197;
listen 80;
server_name ganool.com www.ganool.com;
location / {
if ($http_host ~* "^(www\.)?ganool\.com$") {
rewrite ^/(.*)$ https://goody.to/$1 permanent;
}
}
}