djangocms-multisite
djangocms-multisite copied to clipboard
django-multisite support for DjangoCMS
## Description Upgrade package tooling, drop Django
I manage to get this library working on desktop, but when I try in a FreeBSD 10.2 environment with gunicorn and nginx, I keep getting a 404 error. ``` txt...
The default from README: ``` MULTISITE_CMS_URLS={ 'www.example.com': 'tests.test_utils.urls1', 'www.example2.com': 'tests.test_utils.urls2', }, MULTISITE_CMS_ALIASES={ 'www.example.com': ('alias1.example.com', 'alias2.example.com',), 'www.example2.com': ('alias1.example2.com', 'alias2.example2.com',), }, MULTISITE_CMS_FALLBACK='www.example.com' ``` 1. You have to insert three times `www.example.com` ->...
djangocms-multisite is not really related to django-cms, isn't it?!? The main goal of djangocms-multisite is to switch the used urls.py Maybe this is also interesting for non django-cms usage. See:...
### enhancement proposal If there are no sites in _Home › Sites › Sites_ or there's only _example.com_ during the initial migration insert the values in MULTISITE_CMS_URLS as the starting...
This project needs to be updated to at least support Django 3.2 LTS. Currently it only supports Django 3.0, which is reaching end of life in April 2020.
Hi, I am trying to get oriented with this module and get basic setup working. I have djangocms working, but I can't get it to work with djangocms-multisite. After following...
To allow fully dynamic configuration we should move `MULTISITE_CMS_URLS` and `MULTISITE_CMS_ALIASES` to the database. * `MULTISITE_CMS_ALIASES` is trivial as `django-multisite` `Alias` already does the job * `MULTISITE_CMS_URLS` less so, as...
I am using this package to make sharing content between sites easier for the users. They do this via the alias feuture in the djangocms. But when creating an alias...