
Example configuration block for redirecting domain "old.artem.services" to "new.artem.services"
app.conf
server {
    server_name old.artem.services;
    return 301 https://new.artem.services$request_uri;
}

Example configuration block for redirecting domain "old.artem.services" to "new.artem.services"
server {
    server_name old.artem.services;
    return 301 https://new.artem.services$request_uri;
}