python - 为什么我不能连接到我的本地主机 django 开发服务器?

标签 python django heroku

我正在创建一个 Django 应用程序,并且正在设置我的本地测试环境。我可以成功地让 manage.py runserver 工作,但将我的浏览器指向 http://127.0.0.1:8000/http://0.0 的任何变体.0.0:8000/http://localhost:8000/ 返回“无法访问此站点”错误。

同时django会抛出301错误:

Starting development server at http://0.0.0.0:8000/
Quit the server with CONTROL-C.
[11/Jul/2017 23:35:37] "GET / HTTP/1.1" 301 0

我已成功将应用程序部署到 Heroku(所有 URL 都在那里工作),但我无法在我的本地机器上运行它。我还尝试了 heroku local 包含的开发服务器来达到同样的效果。

作为引用,我的 django urls.py 文件如下所示:

from django.conf.urls import url
from django.contrib import admin
from recs.views import Request1, Check1, index

urlpatterns = [
    url(r'^$', index, name='index'),
    url(r'^admin/', admin.site.urls),
    url(r'^analyze1/', Request1),
    url(r'^analyze1/status/', Check1),
]

感谢任何帮助!

编辑: 发布设置.py

import os
import recs.environment_vars as e_v

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.abspath(__file__))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'KEY HIDDEN'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

# Honor the 'X-Forwarded-Proto' header for request.is_secure()
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')

ALLOWED_HOSTS = ['*']


# Application definition

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

MIDDLEWARE_CLASSES = [
    'sslify.middleware.SSLifyMiddleware',
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'recs.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': ['recs/templates',],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'recs.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases


# Internationalization
# https://docs.djangoproject.com/en/1.10/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'America/Los_Angeles'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.10/howto/static-files/
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_URL = '/static/'
STATICFILES_DIRS = (
    os.path.join(BASE_DIR, './static'),
)
STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage'

# Logs
LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'formatters': {
        'verbose': {
            'format': ('Application Log: ' + '[%(levelname)s] %(asctime)s [%(process)d] ' +
                       'pathname=%(pathname)s lineno=%(lineno)s ' +
                       'funcname=%(funcName)s %(message)s'),
            'datefmt': '%Y-%m-%d %H:%M:%S'
        },
        'simple': {
            'format': '%(levelname)s %(message)s'
        }
    },
    'handlers': {
        'console': {
            'level': 'DEBUG',
            'class': 'logging.StreamHandler',
            'formatter': 'verbose'
        }
    },
    'loggers': {
        'clothing_recommendation.clothing_recommendation': {
            'handlers': ['console'],
            'level': 'DEBUG'
        }
    }
}

import urlparse
# Celery + Redis - For long-lived asynchronous tasks (e.g. email parsing)
# Redis
redis_url = urlparse.urlparse(os.environ.get('REDIS_URL'))
CACHES = {
    "default": {
         "BACKEND": "redis_cache.RedisCache",
         "LOCATION": "{0}:{1}".format(redis_url.hostname, redis_url.port),
         "OPTIONS": {
             "PASSWORD": redis_url.password,
             "DB": 0,
         }
    }
}

# Celery
#CELERYD_TASK_SOFT_TIME_LIMIT = 60
BROKER_URL=os.environ['REDIS_URL']
CELERY_RESULT_BACKEND=os.environ['REDIS_URL']
CELERY_ACCEPT_CONTENT=['json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TASK_RESULT_EXPIRES = 300
CELERYD_MAX_TASKS_PER_CHILD = 2
BROKER_TRANSPORT_OPTIONS = {'confirm_publish': True} # Hack to prevent failed 'success' of tasks, per MT's experience with RabbitMQ - probably doesnt work with Redis? But worth trying

最佳答案

OP 在原始问题的评论中发布了解决方案,但他/她似乎忘记将其作为答案发布。所以这里是:

Ok so the problem is because of the https, thus getting redirected, as localhost is working on http, try to comment out this line and check SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') and also comment out the sslify from middleware as said by @ShobhitSharma

关于python - 为什么我不能连接到我的本地主机 django 开发服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45050668/

相关文章:

python - 处理 bigquery 中的坏行

Python:将 n 元组转换为 x 元组,其中 x < n

django - 使用django-social-auth登出

ruby-on-rails - 为什么我的 js+css 在 Rails + Heroku 的生产环境中没有被压缩?

mongodb - 如何使用 go 和 mongodb 在 heroku 上无错误地部署应用程序?

Python 键入 : Given Set of Values

python - 每次运行程序时如何让Python在excel中添加一个新行?

python - 错误 : didn't return an HttpResponse object. 它返回 None

python - “元组”对象没有属性 'all'

heroku - Heroku Remote 不会删除