我是Docker和Apache的新手,正在尝试执行一个非常简单的程序,该程序将在本地主机上显示一个网页。但是,我不断收到403 Forbidden error
这样
“您无权访问此服务器上的/”
。我在本地主机端口Apache/2.4.25 (Debian)
上使用5002
服务器。目录的路径为~/tutorial/product
。我在这里阅读了许多解决方案,并尝试了所有解决方案,但没有一个对我有用。
/etc/apache2/apache2.conf
<Directory /var/www/html>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
/etc/apache2/sites-enabled/000-default.conf
ServerAdmin webmaster@localhost
DocumentRoot /var/www/signature
<Directory /var/www/signature/>
Allowoverride all
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
我已经使用ls -l
在路径中的每个目录中包含了权限:
〜/ tutorial
|---------------------|------------------|
| -rwxr-xr-x |docker-compose.yml|
|---------------------|------------------|
| drwxr-xr-x | product |
|---------------------|------------------|
| drwxr-xr-x | website |
|---------------------|------------------|
〜/ tutorial / products
|---------------------|------------------|
| -rwxr-xr-x | api.py |
|---------------------|------------------|
| -rwxr-xr-x | Dockerfile |
|---------------------|------------------|
| -rwxr-xr-x | index.php |
|---------------------|------------------|
| -rwxr-xr-x | requirements.txt |
|---------------------|------------------|
答案 0 :(得分:1)
您缺少Docker容器中的文件。您需要发出以下命令以将文件从计算机上移至Docker容器。
在容器外发出此命令。
docker cp index.php 4fdb84ef3ef4:/var/www/html/index.php