簡體   English   中英

為什么會出現錯誤“您無權訪問/在此服務器上。”?

[英]Why do I get the error “You don't have permission to access / on this server.”?

我嘗試在docker上運行我的網站,這是我的docker-compose.yml:

version: '2'
services:
  php:
    image: yiisoftware/yii2-php:7.1-apache
  volumes:
    - ~/projects/my-project-name.local/composer- 
    docker/cache:/root/.composer/cache:delegated
    - ./:/app:delegated
  ports:
    - '8000:80'

當我運行“ docker-compose up -d --build”並打開url localhost:8000時,發生錯誤“ Forbidden。您無權訪問此服務器上的/”。 容器的日志為:

AH00112: Warning: DocumentRoot [/var/www/html] does not exist
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.22.0.2. Set the 'ServerName' directive globally to suppress this message
AH00112: Warning: DocumentRoot [/var/www/html] does not exist
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 172.22.0.2. Set the 'ServerName' directive globally to suppress this message
[Tue Jul 10 06:42:22.442648 2018] [mpm_prefork:notice] [pid 1] AH00163: Apache/2.4.25 (Debian) configured -- resuming normal operations
[Tue Jul 10 06:42:22.442713 2018] [core:notice] [pid 1] AH00094: Command line: 'apache2 -D FOREGROUND'
[Tue Jul 10 06:42:25.985025 2018] [core:error] [pid 17] [client 172.22.0.1:48650] AH00037: Symbolic link not allowed or link target not accessible: /var/www/html
172.22.0.1 - - [10/Jul/2018:06:42:25 +0000] "GET / HTTP/1.1" 403 503 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36"
[Tue Jul 10 06:42:26.117774 2018] [core:error] [pid 17] [client 172.22.0.1:48650] AH00037: Symbolic link not allowed or link target not accessible: /var/www/html, referer: http://localhost:8000/
172.22.0.1 - - [10/Jul/2018:06:42:26 +0000] "GET /favicon.ico HTTP/1.1" 403 513 "http://localhost:8000/" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36"

當我將docker-compose.yml與yii2 basic一起使用時,一切正常。 請幫助我解決此問題。 我的操作系統是Ubuntu-18.04。

yii2 docker鏡像基於php鏡像,並且在Dockerfile中包含以下幾行:

# Copy the app code into the image
COPY . /var/www/html

這與日志中的警告一致。

將其添加到Dockerfile時,應該沒問題(假設您的源代碼位於當前目錄中)。

如果要將Docker容器用作開發環境,則可以將源代碼的文件夾安裝到/var/www/html 在這種情況下,您必須添加一個卷:

volumes:
  - .:/var/www/html # Add this line

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM