-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi, INSTALLED_APPS = [
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django.contrib.humanize',
'mptt',
'NEMO',
] Now as for # 1, you should be able to increase So in theory, you could set up a separate instance of nemo with a really high value for |
Beta Was this translation helpful? Give feedback.
-
Thanks again for the useful insight! PS: The same media folder is currently mounted on all instances, no problems so far. Also new files are usually uploaded by main instance. |
Beta Was this translation helpful? Give feedback.
Hi,
Let me start by answering # 2, it should be ok to run multiple instances of NEMO against the same database (as long as it's a full-fledged database, i.e. not file based like SQLite). At NIST we have 2 instances running against the same Oracle database and have no issues.
Just make sure to only run timed services (cron jobs) on only one of the instances (the non-public one). Also if you set
ALLOW_CONDITIONAL_URLS = False
on a public instance you can limit installed apps to just a few: