我正在尝试在VPS服务器以及共享主机上为Django 2.2.8配置Web服务器,但两者均无法正常工作。我已经在Web服务器上配置了python,它的外壳正在工作并提供输出。但是,当我尝试配置Django却无法正常工作时,则会出现空白屏幕。
对于Django配置,我已经按照以下步骤操作,并点击了此链接
https://github.com/sparagus/django-shared-hosting-1and1
通过SSH访问服务器,这很可能会将您带到您的基本目录(您的htdocs目录中,是网站目录所在的目录)。
Make a directory where you want your Python files to reside and cd into it.
mkdir python_files
cd python_files
Run the build-python.sh
./build-python.sh
install/python3.6.3/bin/python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
If you get an SSL error here then there's a problem with OpenSSL.
Check if Django is installed correctly.
python -m django --version
Go back to your base directory and start a Django project.
cd ..
django-admin startproject your_site
依次执行git链接上提到的所有步骤,但是访问url时显示空白