I will also be interested to know the solution to this. Ruby on Rails has pow.cx to symlink .dev domains, which are able to create and use subdomains for localhost.
Thanks! On Nov 28, 7:37 pm, Nik Go <nikolai...@gmail.com> wrote: > Is it possible to run something like "acme.127.0.0.1:8000"? > > I've already set the common_field, and I want to do other local tests. I > tried a different IP address, and it works but I lose access to the admin > interface. > > This is my routes.py > routers = dict( > BASE = dict( > domains = { > '127.0.0.1:8000' : 'welcome', > 'acme.127.0.0.1:8000' : 's1' > } > ), > ) > > What's the proper way of doing this?