mirror of
https://github.com/django/django.git
synced 2025-02-10 01:16:53 +00:00
Fixed #9920 - Clarfied empty string vs. localhost in settings database host.
Thanks chromano for the draft patch.
This commit is contained in:
parent
e376558ed2
commit
f7142b6111
@ -13,10 +13,11 @@ DATABASES = {
|
|||||||
'default': {
|
'default': {
|
||||||
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
|
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
|
||||||
'NAME': '', # Or path to database file if using sqlite3.
|
'NAME': '', # Or path to database file if using sqlite3.
|
||||||
'USER': '', # Not used with sqlite3.
|
# The following settings are not used with sqlite3:
|
||||||
'PASSWORD': '', # Not used with sqlite3.
|
'USER': '',
|
||||||
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
|
'PASSWORD': '',
|
||||||
'PORT': '', # Set to empty string for default. Not used with sqlite3.
|
'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
|
||||||
|
'PORT': '', # Set to empty string for default.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user