I have multiple subdomains, all pointing to one machine, and one IP address. On this machine, I want to have nginx acting as a reverse proxy, and depending on which subdomain was used to access the machine, I want it to reverse proxy to a different server. All the examples I've seen of using nginx as a reverse proxy use location
, but as I understand that only works for the path, not for different subdomains. How can I achieve what I want?
Asked
Active
Viewed 6.4k times
29

markasoftware
- 409
- 1
- 5
- 7
-
2This might be a bit too broad. Can you post more about what you've tried already? – Will Feb 01 '16 at 05:47
2 Answers
54
Unless I completely misread your question: You simply set up server blocks for each sub-domain and the define the correct reverse proxy for the root of that subdomain i.e. something along the lines of:
server {
server_name subdomain1.example.com;
location / {
proxy_pass http://hostname1:port1;
}
}
server {
server_name subdomain2.example.com;
location / {
proxy_pass http://hostname2:port2;
}
}

HBruijn
- 72,524
- 21
- 127
- 192
4
Pretty much the same way.
location /foo {
rewrite ^/foo(.+)$ /$1 break;
proxy_pass http://foo;
}
location /bar {
rewrite ^/bar(.+)$ /$1 break;
proxy_pass http://bar;
}
-
How does this work for subdomains though? The location and regex seem to be specifically for a path. – DBrown Mar 02 '22 at 14:58
-
1
-