nginx listen on IP alias

I have multiple IP aliases and am running nginx for a reverse proxy. However, I only want nginx to listen on one alias, but am able to connect to nginx using ANY of the IP aliases.

I used
Code:
server {
    listen 10.10.12.20:80
}
in nginx.conf. But this doesn't restrict listening on all aliases.
 
Back
Top