2017-02-12 11 views
1

Django의 웹 소켓에 대해이 예제를 사용하고 싶습니다. https://github.com/jacobian/channels-example 저는 Heroku에서 호스팅되고 Whitenoise를 사용하여 내 프로덕션 응용 프로그램을 사용할 의도가 있으므로이 작업을 직접 수행하고 있습니다. 위의 예제를 복제 한 후에 Whitenoise를 사용하여 몇 가지 조작을했는데 이제는 정적 파일이로드되지 않는 브라우저 (크롬 또는 FF)를 통해 응용 프로그램을 처음 방문 할 때 정적 파일을 다시 불러올 때, 세 번째로드에서는 다시 꺼집니다. 여기 내 설정 파일입니다Django 채널을 사용하여 정적 파일 제공 문제

from channels.staticfiles import StaticFilesConsumer 
from . import consumers 

channel_routing = { 
    # This makes Django serve static files from settings.STATIC_URL, similar 
    # to django.views.static.serve. This isn't ideal (not exactly production 
    # quality) but it works for a minimal example. 
    # 'http.request': StaticFilesConsumer(), 

    # Wire up websocket channels to our consumers: 
    'websocket.connect': consumers.ws_connect, 
    'websocket.receive': consumers.ws_receive, 
    'websocket.disconnect': consumers.ws_disconnect, 
} 

Procfile은 다음과 같습니다 :

web: daphne chat.asgi:channel_layer --port $PORT --bind 0.0.0.0 -v2 
worker: python manage.py runworker -v2 

나는 그것을 시도하지 않은 여기

import os 
import random 
import string 
import dj_database_url 

BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__)) 

SECRET_KEY = os.environ.get("SECRET_KEY", "".join(random.choice(string.printable) for i in range(40))) 
DEBUG = os.environ.get("DEBUG", False) 

# Application definition 
INSTALLED_APPS = (
    'django.contrib.admin', 
    'django.contrib.auth', 
    'django.contrib.contenttypes', 
    'django.contrib.sessions', 
    'django.contrib.messages', 
    'django.contrib.staticfiles', 
    'channels', 
    'chat', 
) 

MIDDLEWARE_CLASSES = (

    'django.middleware.security.SecurityMiddleware', 
    'whitenoise.middleware.WhiteNoiseMiddleware', 
    '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 = 'chat.urls' 

TEMPLATES = (
    { 
     'BACKEND': 'django.template.backends.django.DjangoTemplates', 
     'DIRS': [os.path.join(BASE_DIR, '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', 
      ], 
      'debug': DEBUG, 
     }, 
    }, 
) 

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

DATABASES = { 
    'default': dj_database_url.config(default="postgres:///channels-example", conn_max_age=500) 
} 

AUTH_PASSWORD_VALIDATORS = (
    { 
     'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 
    }, 
) 

# Internationalization 
# https://docs.djangoproject.com/en/1.9/topics/i18n/ 
LANGUAGE_CODE = 'en-us' 
TIME_ZONE = 'UTC' 
USE_I18N = True 
USE_L10N = True 
USE_TZ = True 

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

# Allow all host headers 
ALLOWED_HOSTS = ['*'] 

# Static files (CSS, JavaScript, Images) 
# https://docs.djangoproject.com/en/1.9/howto/static-files/ 

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') 
STATIC_URL = '/static/' 

# Extra places for collectstatic to find static files. 
STATICFILES_DIRS = [ 
    os.path.join(BASE_DIR, 'static'), 
] 

# Channel settings 
CHANNEL_LAYERS = { 
    "default": { 
     "BACKEND": "asgi_redis.RedisChannelLayer", 
     "CONFIG": { 
      "hosts": [os.environ.get('REDIS_URL', 'redis://localhost:6379')], 
     }, 
     "ROUTING": "chat.routing.channel_routing", 
    }, 
} 

# Logging 
LOGGING = { 
    'version': 1, 
    'disable_existing_loggers': False, 
    'handlers': { 
     'console': { 
      'class': 'logging.StreamHandler', 
     }, 
    }, 
    'loggers': { 
     'django': { 
      'handlers': ['console'], 
      'propagate': True, 
      'level': 'INFO' 
     }, 
     'chat': { 
      'handlers': ['console'], 
      'propagate': False, 
      'level': 'DEBUG', 
     }, 
    }, 
} 

STATICFILES_STORAGE = 'whitenoise.django.GzipManifestStaticFilesStorage' 

내가 변경 routing.py하게 다른 파일입니다 Heroku 에서처럼 지금은 localhost에서만이 동작을 관찰 했으므로 솔루션을 원래 응용 프로그램과 통합 할 필요가 없었습니다. 나는 응용 프로그램을 로컬에서 실행하기 위해 heroku local을 사용했습니다.

내가 뭘 잘못하고 있니? 그리고 Heroku에서 Procfile 제작 준비 과정에 대한 준비가되어 있습니까?

감사

답변

0

1.0.3 및 백색 잡음 3.3.0 당신이 오래된 버전과 다프네는 백색 잡음 정적 콘텐츠를 제공 할 수 있도록 추가 된 몇 가지 버그 수정을 사용하고 언급 한 예에 장고 채널을 업그레이드하십시오. 또는 s3 버킷을 사용하여 정적 컨텐츠를 제공 할 수 있습니다. 이는 정적 컨텐츠를 장고로 제공하는 기본 접근 방식입니다.

https://github.com/django/channels/issues/87