前提・実現したいこと
初めて投稿します。不明な点があればおっしゃってください。
phpMyAdmin用にドメインを取得したものを、VirutalHostに設定したいです。
以下の設定でapacheを再起動しましたが403エラーが返ってきてしまいます。
初心者のため変な記述があれば教えていただきたいです。
発生している問題・エラーメッセージ
403エラー
該当のソースコード
<VirtualHost *:80> ServerName 取得したドメイン DocumentRoot /usr/share/phpMyAdmin/ ErrorLog logs/phpmyadmin-error_log CustomLog logs/phpmyadmin-access_log common <IfModule dir_module> DirectoryIndex index.php index.html </IfModule> RewriteEngine on RewriteCond %{SERVER_NAME} =取得したドメイン RewriteRule ^ http://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] </VirtualHost> <Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 Require all granted </Directory> <Directory /usr/share/phpMyAdmin/setup/> <IfModule mod_authz_core.c> # Apache 2.4 Require local Require all granted </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 </IfModule> </Directory> # These directories do not require access over HTTP - taken from the original # phpMyAdmin upstream tarball # <Directory /usr/share/phpMyAdmin/libraries/> Require local #Require all granted </Directory> <Directory /usr/share/phpMyAdmin/setup/lib/> Require local # Require all granted </Directory> <Directory /usr/share/phpMyAdmin/setup/frames/> Require local #Require all granted </Directory>
補足情報(FW/ツールのバージョンなど)
Apache2.4
CentOS 7.6
回答1件
あなたの回答
tips
プレビュー