CentOS6.9のapache2.2系から2.4系にアップデートしました。
その結果、リバースプロキシをかけているものが全て見えなくなってしまいました。
ご助言いただけると助かります。
suzunet.orz.hm
1<VirtualHost *:80> 2ServerName suzunet.orz.hm 3DirectoryIndex index.html index.php index.cgi 4AddDefaultCharset UTF-8 5DocumentRoot /var/www/html 6 <Directory "/var/www/html"> 7 AllowOverride All 8 Options All 9 Require all granted 10 </Directory> 11</VirtualHost> 12 13<IfModule mod_ssl.c> 14<VirtualHost *:443> 15ServerName suzunet.orz.hm 16DirectoryIndex index.html index.php 17AddDefaultCharset UTF-8 18DocumentRoot /var/www/html 19 <Directory "/var/www/html"> 20 AllowOverride All 21 </Directory> 22SSLCertificateFile /etc/letsencrypt/live/suzunet.orz.hm/cert.pem 23SSLCertificateKeyFile /etc/letsencrypt/live/suzunet.orz.hm/privkey.pem 24Include /etc/letsencrypt/options-ssl-apache.conf 25SSLCertificateChainFile /etc/letsencrypt/live/suzunet.orz.hm/chain.pem 26</VirtualHost> 27</IfModule> 28
suzunet.info
1<VirtualHost *:80> 2ServerName suzunet.info 3DocumentRoot /var/www/suzunet_info 4KeepAlive Off 5ProxyPass /.well-known/ ! 6ProxyPass / http://192.168.11.150/ 7</VirtualHost> 8 9<VirtualHost *:443> 10 ServerName suzunet.info 11 DirectoryIndex index.html index.php 12 AddDefaultCharset UTF-8 13 KeepAlive Off 14 ProxyPass / http://192.168.11.150/ 15 16 # SSL 17 SSLEngine on 18 SSLProtocol All -SSLv3 -SSLv2 19SSLCertificateFile /etc/letsencrypt/live/suzunet.info/cert.pem 20SSLCertificateKeyFile /etc/letsencrypt/live/suzunet.info/privkey.pem 21Include /etc/letsencrypt/options-ssl-apache.conf 22SSLCertificateChainFile /etc/letsencrypt/live/suzunet.info/chain.pem 23</VirtualHost>
error_log [Tue Mar 13 18:58:35.818090 2018] [suexec:notice] [pid 12086:tid 140709270775776] AH01232: suEXEC mechanism enabled (wrapper: /opt/rh/httpd24/root/usr/sbin/suexec) [Tue Mar 13 18:58:35.833344 2018] [http2:warn] [pid 12087:tid 140709270775776] AH02951: mod_ssl does not seem to be enabled [Tue Mar 13 18:58:35.833953 2018] [lbmethod_heartbeat:notice] [pid 12087:tid 140709270775776] AH02282: No slotmem from mod_heartmonitor [Tue Mar 13 18:58:35.836379 2018] [mpm_event:notice] [pid 12087:tid 140709270775776] AH00489: Apache/2.4.27 (Red Hat) configured -- resuming normal operations [Tue Mar 13 18:58:35.836412 2018] [core:notice] [pid 12087:tid 140709270775776] AH00094: Command line: '/opt/rh/httpd24/root/usr/sbin/httpd' [Tue Mar 13 19:03:29.563950 2018] [mpm_event:notice] [pid 12087:tid 140709270775776] AH00491: caught SIGTERM, shutting down [Tue Mar 13 19:03:29.719204 2018] [suexec:notice] [pid 12759:tid 140311437895648] AH01232: suEXEC mechanism enabled (wrapper: /opt/rh/httpd24/root/usr/sbin/suexec) [Tue Mar 13 19:03:29.739915 2018] [http2:warn] [pid 12761:tid 140311437895648] AH02951: mod_ssl does not seem to be enabled [Tue Mar 13 19:03:29.740531 2018] [lbmethod_heartbeat:notice] [pid 12761:tid 140311437895648] AH02282: No slotmem from mod_heartmonitor [Tue Mar 13 19:03:29.742488 2018] [mpm_event:notice] [pid 12761:tid 140311437895648] AH00489: Apache/2.4.27 (Red Hat) configured -- resuming normal operations [Tue Mar 13 19:03:29.742519 2018] [core:notice] [pid 12761:tid 140311437895648] AH00094: Command line: '/opt/rh/httpd24/root/usr/sbin/httpd' [Tue Mar 13 19:10:29.680229 2018] [mpm_event:notice] [pid 12761:tid 140311437895648] AH00491: caught SIGTERM, shutting down [Tue Mar 13 19:10:29.830065 2018] [suexec:notice] [pid 13596:tid 140131694290912] AH01232: suEXEC mechanism enabled (wrapper: /opt/rh/httpd24/root/usr/sbin/suexec) [Tue Mar 13 19:10:29.846107 2018] [http2:warn] [pid 13597:tid 140131694290912] AH02951: mod_ssl does not seem to be enabled [Tue Mar 13 19:10:29.846778 2018] [lbmethod_heartbeat:notice] [pid 13597:tid 140131694290912] AH02282: No slotmem from mod_heartmonitor [Tue Mar 13 19:10:29.848799 2018] [mpm_event:notice] [pid 13597:tid 140131694290912] AH00489: Apache/2.4.27 (Red Hat) configured -- resuming normal operations [Tue Mar 13 19:10:29.848831 2018] [core:notice] [pid 13597:tid 140131694290912] AH00094: Command line: '/opt/rh/httpd24/root/usr/sbin/httpd'
教えていただいて、いろいろ触っていたら、httpd2.2.15がインストールされてました。削除したはずだったのですが。それで調べて見たら、php7.0をインストールすると一緒にhttpd2.2.15が入ってしまうようです。どうしたらいいでしょうか?
その上で、上記でやったコマンドをやって見ましたが、そのようなファイルやディレクトリはありません。とでます。
どうやったら確認できるでしょうか?

回答1件
あなたの回答
tips
プレビュー