---
title: "Override Domain With Nginx"
date: 2021-04-23T17:15:00.000Z
author: Z.SHINCHVEN
tags: [Nginx, Reverse Proxy, Http Status 301]
canonical: https://atlassc.net/2021/04/24/override-domain-with-nginx
---
You can easily override domain with simple nginx configuration,
full request uri to your old domain are forwarded to your new one.

```nginx
server {
    server_name old.domain.com;
    return 301 https://new.domain.com$request_uri;
    
    # ... other configs
}
```
