Ok I think I must be missing something. In settings.py I don’t see the setting for absolute url for the site. I see there is MEDIA_URL.
django-registration references {{ site }} which is defaulting to example.com but I’m not seeing that in any settings.
If I want the dev.mysite.com and mysite.com to work independently, what do I need to put in settings.py?
The
siteuses the sites framework. Theexample.comdomain is defined in the database and can be changed with the Django admin.To use 2 sites simultaneously you will have to change the
SITE_IDin the settings and add the extra site in the Django Admin.