phpbb: Make the username case-insensitve on login again.
[matthijs/projects/dorestad-bookings.git] / dbsettings.py.tmpl
1 # Database settings. Put here to keep them out of version control. We
2 # don't want sensitive data in there, and database settings might vary
3 # per deployment
4 DATABASE_ENGINE = 'mysql'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
5 DATABASE_NAME = 'ee_bookings'       # Or path to database file if using sqlite3.
6 DATABASE_USER = 'ee_bookings'       # Not used with sqlite3.
7 DATABASE_PASSWORD = ''              # Not used with sqlite3.
8 DATABASE_HOST = ''                  # Set to empty string for localhost. Not used with sqlite3.
9 DATABASE_PORT = ''                  # Set to empty string for default. Not used with sqlite3.
10
11 # Database to use for phpbb authentication. Other variables from above
12 # (except for ENGINE) can similarly be overridden.
13 PHPBB_DATABASE_NAME = 'ee_forum'
14 PHPBB_TABLE_PREFIX = 'phpbb_'