Nginx Reverse Proxying Multiple Domains Using map Module

Instead of writing multiple server blocks repeatedly in configuration, we can simplified configuration using nginx map module

ie:

1map_hash_bucket_size 128;
2 
3map $http_host $backend_servers {
4    hostnames;
5    default                         www.example.com;
6    frontend.example2.com           backend.example2.com
7    frontend.example3.com           backend.example3.com
8    www.example.org                 backend.example.org
9}
10 
11proxy_set_header X-Real-IP $remote_addr;
12proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
13proxy_set_header Host $http_host;
14 
15server {
16    location / {
17        proxy_pass  http://$backend_servers
18    }
19}

source: taken from nginx mailinglist



Comments

No comments yet. Why don’t you start the discussion?

Leave a Reply

Your email address will not be published. Required fields are marked *