0

我在 apache 服务器上启动并运行了一个 django 项目。我可以在服务器机器上访问和使用该站点。

目前,我将服务器 IP 设置为 192.168.1.6 并打开端口 80。

当我尝试从网络上的另一台机器访问该站点时,而不是该站点,我可以访问文件目录树。我可以看到与站点相关的所有文件(模板和视图等)。

为什么会发生这种情况,而不是 django 和 apache 正常为网站提供服务?

--edit-- 这是我的一些配置设置,顺便说一句,它在 ubuntu 上运行

htmlfive.wsgi

import os
import sys
sys.path = ['/var/www/htmlfive'] + sys.path
os.environ['DJANGO_SETTINGS_MODULE'] = 'htmlfive.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()

/etc/hosts 192.168.1.6 是我遇到问题的网络。

127.0.0.1 localhost
127.0.1.1 ubuntu
192.168.1.6 htmlfive.com 
172.17.107.4 htmlfive.com

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

这是 htmlfive.conf

<VirtualHost *:80>
WSGIScriptAlias / /home/daryl/htmlfive.wsgi
DocumentRoot /var/www/htmlfive/htmlfive/
ServerName htmlfive.com
Alias /static /var/www/htmlfive/static/

<Directory /var/www/htmlfive/>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
4

0 回答 0