Forum OpenACS Q&A: AOLServer serving same site from different addresses

Is it possible to configure AOLServer to listen on several different
addresses and serve exactly the same information?

i.e.  Can I set it to listen for localhost, mydomain.com, and
myotherdomain.com and serve the same pages?

You can do this:
ns_section ns/server/myserver/module/nssock
ns_param timeout 120
ns_param Address 10.0.0.1
ns_param Port 80

ns_section ns/server/myserver/module/nssock2
ns_param timeout 120
ns_param Address 127.0.0.1
ns_param Port 80

ns_section ns/server/myserver/modules
ns_param nssock      nssock.so
ns_param nssock2     nssock.so
You can also set the address to 0.0.0.0 and have it listen on all
available interfaces.
Or, point your DNS entry for each domain to the same IP address.