:: How to redirect to external url on NGINX
+ create configure file
vi /etc/nginx/vhosts/blackonsole.org.conf
added configuration like these:
server { listen 80; server_name blackonsole.org www.blackonsole.org; location / { rewrite ^ //anotherurl.tld/path; } }
+ testing configure file and reload nginx
nginx -t nginx -s reload