Пытаясь развернуть Django в Windows, кажется невозможным - PullRequest
0 голосов
/ 05 июля 2018

Привет, ребята. Надеюсь, вы мне поможете. Я пытаюсь развернуть django 1.11 на машине с Windows, но это кажется невозможным, у меня уже есть apache и wsgi_mod, правильно установленные на машине, на самом деле, когда я настраиваю проект, он работает. хорошо, 127.0.0.1 (localhost) правильно показывает приветственное сообщение django, я также могу правильно установить приложение, проблема в том, что когда я добавляю приложение в settings.py, оно показывает мне (500 Internal Server Error) мой проект работает нормально В виртуальном мире, даже этот проект был сделан на той же машине, я надеюсь, вы можете помочь мне, потому что эта проблема сводит меня с ума.

httpd.conf

DocumentRoot "C:\cotizaciones\proyecto"
<Directory "C:\cotizaciones\proyecto">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>


<IfModule wsgi_module>

    WSGIScriptAlias / "C:\cotizaciones\proyecto\proyecto\wsgi.py"
    WSGIPythonPath "C:\cotizaciones\proyecto"

    <Directory "C:\cotizaciones\proyecto\proyecto">

    <Files wsgi.py>
        Allow from all    
    </Files>

   </Directory>

</IfModule>

settings.py

DEBUG = False

ALLOWED_HOSTS = ["*"]


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'aplicacion',
]

Я действительно буду ценить руку, Спасибо!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...