#Dockerコンテナ内部のApache2のドキュメントルート及びScriptAliasが変更できない
MacOS(catalina ver.10.15.7)内でのローカルの開発環境として
Docker(ver_20.10.5)のコンテナ内部にubuntu(ver_20.04)とapache2(Ver_2.4.41)をインストールしています。
apacheのデフォルトのドキュメントルートとcgi実行ディレクトリである
- /var/www/html/index.html
- /usr/lib/cgi-bin
この2つをそれぞれホームディレクトリ/root直下の
- /root/mysite/mysite/index.html
- /root/mysite/scripts
に変更したいのですが、ブラウザに
Forbidden:You don't have permission to access this resource.
のメッセージが出てアクセスができません。
mysiteディレクトリの構造は
./mysite
├── [drwxr-xr-x] scripts
│ └── [-rwxr-xr-x] test.py
└── [drwxr-xr-x] mysite
──└──[-rw-r--r--] index.html
test.pyの内部は
python
1#!/usr/bin/env /usr/bin/python3.8 2# -*- coding: utf-8 -*- 3 4print('Content-type: text/html') 5print('') 6print('<html><body>hello world!</body></html>')
上記の様に記述しています
なお、/root/mysiteはホストOS側からVOLUMEコマンドでマウントされ、
mysiteのパーミッションはchmod 755で変更しています。
設定ファイルの/etc/apache2/apache2.confは # a2enmod cgid 実行後に
apache2.conf
1 DocumentRoot /root/mysite/mysite 2 <Directory /root/mysite/mysite> 3 Options Indexes FollowSymLinks 4 AllowOverride None 5 Require all granted 6 </Directory> 7 8 ScriptAlias /scripts/ /root/mysite/scripts 9 <Directory /root/mysite/scripts> 10 AddHandler cgi-script .cgi .py 11 AllowOverride None 12 Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch 13 Require all granted 14 </Directory>
上記の様に編集しています
ちなみに/etc/apache2/site-enabled/000-default.confの
DocumentRoot /var/www/html
はコメントアウトしています。
apacheのエラーログには
AH01630: client denied by server configuration
と記述されています。
apache2.confのデフォルトパスから変更を行わなければindex.html 、test.pyともに問題なく動いています。
127.0.0.1/cgi-bin/test.py <- 動く
127.0.0.1/scripts/test.py <- エラー
補足情報(Dockerfile)
Dockerfile
1FROM ubuntu:latest 2USER root 3EXPOSE 80 4WORKDIR /root 5 6RUN apt-get update -y && apt-get upgrade -y && \ 7 apt-get install -y tzdata && \ 8 apt-get install -y apache2 && \ 9 apt-get clean 10RUN apt-get install -y \ 11 python3.8 \ 12 && apt-get clean
何か設定の見落としなどがあればご教授よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/09 13:01
2021/05/09 13:06