The idea is to take incoming requests to http://abc.example.com/... and rewrite them to http://example.com/abc/...
http://abc.example.com/...
http://example.com/abc/...
That\'s easy enough to d
# abc.example.com server { listen 80; server_name abc.example.com; location / { proxy_pass http://127.0.0.1/abc$request_uri; proxy_set_header Host example.com; } }