アクセスしようとしたらwp-config.phpが出てくる
-
セキュリティ的にもまずいので早く解決したいです。
まず、サーバー等の環境はMacBook Pro、Nginx1.2.4、PHP-FPM(PHP5.4.8)、APC3.1.13、Percona-Server、CloudFlare無料版です。
経緯としては、
1:QuickCacheでは物足りないので、WP Super Cacheを入れた。
2:で、Rewriteを適用するため、nginx.confに以下の通り追記した。set $nocache “”;
set $supercache_file $document_root/wp-content/cache/supercache/${http_host}${uri}/index.html;
set $supercache_uri “”;
if (-f $supercache_file) {
set $supercache_uri /wp-content/cache/supercache/${http_host}${uri}/index.html;
}if ($request_method = “POST”) {
set $supercache_uri “”;
set $nocache “1”;
}if ($query_string ~ .*=.*) {
set $supercache_uri “”;
}if ($http_cookie ~ ^.*(comment_author_|wordpress_logged_in|wp-postpass_).*$) {
set $supercache_uri “”;
set $nocache “1”;
}if ($http_x_wap_profile ~ ^[a-z0-9\”]+) {
set $supercache_uri “”;
set $nocache “1”;
}if ($http_profile ~ ^[a-z0-9\”]+) {
set $supercache_uri “”;
set $nocache “1”;
}if ($http_user_agent ~ ^.*(2.0\ MMP|240×320|400X240|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|Googlebot-Mobile|hiptop|IEMobile|KYOCERA/WX310K|LG/U990|MIDP-2.|MMEF20|MOT-V|NetFront|Newt|Nintendo\ Wii|Nitro|Nokia|Opera\ Mini|Palm|PlayStation\ Portable|portalmmm|Proxinet|ProxiNet|SHARP-TQ-GX10|SHG-i900|Small|SonyEricsson|Symbian\ OS|SymbianOS|TS21i-10|UP.Browser|UP.Link|webOS|Windows\ CE|WinWAP|YahooSeeker/M1A1-R2D2|iPhone|iPod|Android|BlackBerry9530|LG-TU915\ Obigo|LGE\ VX|webOS|Nokia5800).*) {
set $supercache_uri “”;
set $nocache “1”;
}if ($http_user_agent ~ ^(w3c\ |w3c-|acs-|alav|alca|amoi|audi|avan|benq|bird|blac|blaz|brew|cell|cldc|cmd-|dang|doco|eric|hipt|htc_|inno|ipaq|ipod|jigs|kddi|keji|leno|lg-c|lg-d|lg-g|lge-|lg/u|maui|maxo|midp|mits|mmef|mobi|mot-|moto|mwbp|nec-|newt|noki|palm|pana|pant|phil|play|port|prox|qwap|sage|sams|sany|sch-|sec-|send|seri|sgh-|shar|sie-|siem|smal|smar|sony|sph-|symb|t-mo|teli|tim-|tosh|tsm-|upg1|upsi|vk-v|voda|wap-|wapa|wapi|wapp|wapr|webc|winw|winw|xda\ |xda-).*) {
set $supercache_uri “”;
set $nocache “1”;
}if ($http_user_agent ~ ^(DoCoMo/|J-PHONE/|J-EMULATOR/|Vodafone/|MOT(EMULATOR)?-|SoftBank/|[VS]emulator/|KDDI-|UP\.Browser/|emobile/|Huawei/|IAC/|Nokia|mixi-mobile-converter/)) {
set $supercache_uri “”;
set $nocache “1”;
}if ($http_user_agent ~ (DDIPOCKET\;|WILLCOM\;|Opera\ Mini|Opera\ Mobi|PalmOS|Windows\ CE\;|PDA\;\ SL-|PlayStation\ Portable\;|SONY/COM|Nitro|Nintendo)) {
set $supercache_uri “”;
set $nocache “1”;
}if ($supercache_uri) {
rewrite ^ $supercache_uri last;
break;
}
location ~ /\. {
deny all;
log_not_found off;
access_log off;
}
location ~ /wp-content/cache/supercache/${http_host}${uri}/index\.html(\.gz)?$ {
charset UTF-8;
internal;}3:そしてNginx再起動。
そしたらばConact-Form7のアイコンとか、JetPackのCSS読み込まれなくなり、焦るが、まだいいやと思う。
~やっぱし気になったのでしばらくして止めた。この時まだ重大なことは起こらなかった。~
4:WP Super Cacheを遂に削除。そうしたら、画像のような事が発生しました。
画像
5:現在もなおこのような事のまま。。。
CloudFlareをデベロップメントモードにしても、Nginxリバースプロキシのデータを消しても、Nginxの設定元に戻しても、APCのキャッシュ消しても、サーバー再起動しても、phpmyadminは使えるので、修復や最適化、また、プラグイン無効化しても駄目で、WordPressを再インストール(というかwp-config.phpを消して作り直しただけ)してもぜんっぜん効果なしでした。
- トピック「アクセスしようとしたらwp-config.phpが出てくる」には新たに返信することはできません。