提问人:Oladotun Kolapo 提问时间:9/23/2023 更新时间:9/23/2023 访问量:106
错误消息“禁止您无权访问此资源”
Error message "Forbidden you don't have permission to access this resource "
问:
我想在 Windows 笔记本电脑上使用 ubuntu 22.04 部署一个 django 应用程序作为 wsl 包,我正在使用 ec2 实例进行托管,我已经完成了所有配置和设置,但是当我尝试使用其公共 IP 访问 chrome 上的网站时,我收到错误“禁止,您无权访问此资源。Apache/2.4.52 (Ubuntu) 服务器位于 54.81.101.238 端口 80
我尝试了网上找到的不同解决方案,甚至是在 stackoverflow 上找到的解决方案 我已经为我的应用程序文件夹授予了 Apache 权限,对我的 apache2.conf 和 virtualhost 文件进行了各种更改,但我仍然收到相同的错误
我的 virtualhost conf 文件: <虚拟主机 *:80>
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /home/rotisary/postly
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
#Include conf-available/serve-cgi-bin.conf
Alias /static /home/rotisary/postly/static
<Directory /home/rotisary/postly/static>
Require all granted
</Directory>
Alias /media /home/rotisary/postly/media
<Directory /home/rotisary/postly/media>
Require all granted
</Directory>
<Directory /home/rotisary/postly/postly>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
WSGIScriptAlias / /home/rotisary/postly/postly/wsgi.py
WSGIDaemonProcess django_app python-path=/home/rotisary/postly:/home> WSGIProcessGroup django_app
Apache 可以访问我的所有文件夹,从根目录(home)到我的 Django 应用程序的目录
答: 暂无答案
评论