我在Apache2.4服务器上运行Django应用程序。我希望从其他系统访问页面http://localhost:8081/home。我在公司环境中,因此服务器和客户端计算机都将位于同一个专用网络中。
所以问题是,我能够在服务器计算机(http://xx.xx.xx.xx:8081/home)上使用服务器IP地址访问该页面,但是当我在客户端计算机上使用它时,页面没有被加载。 (同样,我可以从服务器机器访问该页面为systemname.dns.com:8081/home,但不能从客户端机器访问)
那么我的问题究竟是什么呢?我该如何解决?
httpd.conf的修改部分:
LoadFile c:/users/username/appdata/local/programs/python/python36/python36.dll
LoadModule wsgi_module
c:/users/username/lms/lib/site-packages/mod_wsgi/server/mod_wsgi.cp36-win_amd64.pyd
WSGIScriptAlias / c:/users/username/lms/LMS/wsgi.py WSGIPythonHome c:/users/username/lms WSGIPythonPath c:/users/username/lms
<Directory "C:/Users/username/lms">
<Files wsgi.py>
Require all granted
</Files>
</Directory>