我的任务是允许某个 IP 访问我们的一个开发 wordpress 网站,该网站最初仅供内部访问。
我已经设置了端口转发,但是当从外部访问网站时,我收到 403 错误,拒绝访问。www 文件夹的权限设置为 755,因此理论上我认为我们可以访问,但实际上它不起作用。我对 Linux 还很陌生,所以请耐心等待,但如果您需要我发布任何配置文件来帮助诊断我的问题,请提出要求。
etc\apache2\sites-enabled\000-默认.conf
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
编辑#1 根据要求,这里是访问日志的片段: https://pastebin.com/8zDEkR32(由于网站上的帖子少于 10 个,因此无法直接在此处发帖,因此在帖子中不能发布超过 5 个左右的 URL)196.52.84.52 是我尝试用来访问 Web 服务器的外部 IP 之一
编辑 #2 刚刚在 error.log 中发现了这个问题 https://pastebin.com/z3M9EgqA
答案1
如果该网站在内部网络上运行,那么您必须检查几件事。
检查你的iptables,也许外部ip地址被阻止了。
也许默认的 apache2 配置只允许从内部网络
对于问题#1,您可以允许外部IP地址通过端口80访问服务器。
对于问题#2,您可以尝试在 DocumentRoot /var/www/html 后添加一些额外的代码。
DocumentRoot /var/www/html
<Directory />
Allow from all
</Directory>
答案2
是的,我发现了这个问题,我最近才加入这个组织,我的所有设置都是 FTP 客户端中的默认设置。在注意到“显示隐藏文件”被禁用后,我无法查看 .htaccess 文件,打开文件后,很明显我需要在这里添加一个条目才能访问该网站。
笨蛋!
不过,还是感谢您的建议,非常感谢