Skip to content

Best solution for kiosk login #124

Answered by rptmat57
r-xyz asked this question in Q&A
Oct 19, 2022 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

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:

INSTALLED_APPS = [
  'django.contrib.auth',
  'django.contrib.contenttypes',
  'django.contrib.sessions',
  'django.contrib.messages',
  'django.contrib.staticfiles',
  'django.contrib.humanize',
  'mptt',…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@r-xyz
Comment options

@rptmat57
Comment options

Answer selected by r-xyz
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants