diff options
| author | Christoph Heer <Christoph.Heer@gmail.com> | 2014-07-26 13:21:52 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-07-30 14:14:03 -0400 |
| commit | d47409831fbd44739d261c32c53a094748028e4f (patch) | |
| tree | 84f025048c363cfc714399c87f7b9bd2f916e5e8 /docs/howto/deployment | |
| parent | 66630f589cd641efe91f111919ad5059b8a01a88 (diff) | |
Fixed #23067 -- Updated docs to use django-admin
Diffstat (limited to 'docs/howto/deployment')
| -rw-r--r-- | docs/howto/deployment/wsgi/apache-auth.txt | 2 | ||||
| -rw-r--r-- | docs/howto/deployment/wsgi/uwsgi.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt index 98bafad530..cb4fc98987 100644 --- a/docs/howto/deployment/wsgi/apache-auth.txt +++ b/docs/howto/deployment/wsgi/apache-auth.txt @@ -55,7 +55,7 @@ The ``WSGIAuthUserScript`` directive tells mod_wsgi to execute the ``check_password`` function in specified wsgi script, passing the user name and password that it receives from the prompt. In this example, the ``WSGIAuthUserScript`` is the same as the ``WSGIScriptAlias`` that defines your -application :doc:`that is created by django-admin.py startproject +application :doc:`that is created by django-admin startproject </howto/deployment/wsgi/index>`. .. admonition:: Using Apache 2.2 with authentication diff --git a/docs/howto/deployment/wsgi/uwsgi.txt b/docs/howto/deployment/wsgi/uwsgi.txt index 47f1e7a61d..50a217908d 100644 --- a/docs/howto/deployment/wsgi/uwsgi.txt +++ b/docs/howto/deployment/wsgi/uwsgi.txt @@ -78,7 +78,7 @@ Here's an example command to start a uWSGI server:: This assumes you have a top-level project package named ``mysite``, and within it a module :file:`mysite/wsgi.py` that contains a WSGI ``application`` -object. This is the layout you'll have if you ran ``django-admin.py +object. This is the layout you'll have if you ran ``django-admin startproject mysite`` (using your own project name in place of ``mysite``) with a recent version of Django. If this file doesn't exist, you'll need to create it. See the :doc:`/howto/deployment/wsgi/index` documentation for the default |
