Godaddy域名,DtDNS dynamicDNS,Django app,空白页面

时间:2018-02-28 17:31:40

标签: python django apache raspberry-pi3

我手头有一个奇怪的问题,我似乎不明白这个问题,或者找不到有同样问题的人。

我在godaddy上买了一个域名,我想在我的树莓派上托管我的个人网站。 我使用Django构建了我的网站,一切运作良好。我使用mod_wsgi在我的覆盆子上使用Apache2。 现在我将我的覆盆子pi连接到我的路由器并在DtDNS上注册了一个名称并将我的路由器连接到它,这样我的动态IP就会自动更新。 当我访问我的网站时(从家里或我的工作场所 - 所以我知道我的网站可以从任何地方而不仅仅是我的本地网络获得)它按预期工作,我可以完全访问我建立的所有网页。

现在出现了问题。我将我在godaddy上的域名重定向(301)到我在DtDNS上的名字。当我在/etc/apache2/sites-available/000-default.conf中评论部署我的django网站的部分,并且我连接到godaddy上的我的域名时,我看到apache页面“它工作!”,所以我知道重定向工作。但是,当我部署我的django应用程序,并连接到godaddy上的我的域名时,我有一个空白页面。 (但是当我在dtdns上连接到我的名字时,我仍然会看到它!)。

我在dtdns上允许我的名字,在allow.py中的ALLOWED_HOSTS中允许我的名字在godaddy上。

我做错了什么吗? 我来到这个配置(godaddy域 - > dtDNS - > django on raspberry)因为我最初在godaddy上有一个非django网站,我想将它转换为django(我是一个python用户)我想要放弃godaddy主持人,所以我阅读了很多教程并且来到了这里。

提前多多感谢! 附: :不要犹豫,请我加入一些信息/配置等... 编辑: 这是我的apache conf文件:

<VirtualHost *:80>
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined


        Alias /static /home/pi/workspace/website_perso/images/static/
        Alias /media/ /home/pi/workspace/website_perso/images/media/

        <Directory /home/pi/workspace/website_perso/images/static>
            Require all granted
            </Directory>

        <Directory /home/pi/workspace/website_perso/images/media>
            Require all granted
        </Directory>

        <Directory /home/pi/workspace/website_perso/myapp>
            <Files wsgi.py>
                Require all granted
                </Files>
        </Directory>
            WSGIDaemonProcess myapp python-path=/home/pi/workspace/website_perso python-home=/home/pi/workspace/website_perso/julienenv
        WSGIProcessGroup myapp
        WSGIScriptAlias / /home/pi/workspace/website_perso/myapp/wsgi.py

    </VirtualHost>

    # vim: syntax=apache ts=4 sw=4 sts=4 sr noet

这是我的django设置文件:     “””     julienkaradayi项目的Django设置。

Generated by 'django-admin startproject' using Django 2.0.2.

For more information on this file, see
https://docs.djangoproject.com/en/2.0/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.0/ref/settings/
"""

import os

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


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

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '7(0v67_hclc-kyq^b!)3z6#)$3($6#2@68e7$)!m&+2*iokg-u'

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


ALLOWED_HOSTS = ['IP.IP.IP.IP','mydomain.slyip.com','mygodaddydomain.com']

# Application definition

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

CACHES = {
    'default': {
        'BACKEND':'django.core.cache.backends.memcached.MemcachedCache',
        'LOCATION': '127.0.0.1:11211',
    }
}

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
    'django_user_agents.middleware.UserAgentMiddleware',
]

ROOT_URLCONF = 'myapp.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        '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',
                'django.template.context_processors.media',
            ],
        },
    },
]

WSGI_APPLICATION = 'myapp.wsgi.application'


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

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}


# Password validation
# https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators

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/2.0/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


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

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

# MEDIA

MEDIA_ROOT = BASE_DIR + "/images/media/"
MEDIA_URL = '/media/'

P.P.S。 :我忘了提到当我禁用godaddy重定向上的url屏蔽时,它可以工作,我可以访问我的网站,但dtdns网址会出现。我真的希望我的域名来自godaddy来展示。是否可以在不破坏一切的情况下做到这一点?

0 个答案:

没有答案