.htaccess AddType application/x-httpd-php .php .html AddType text/x-component .htc 影響を与えたいWEBルートディレクトリに置くとよし。 Amazonおすすめ iPad 9世代 2021年最新作 iPad 9世代出たから買い替え。安いぞ!🐱 初めてならiPad。Kindl …
タグ: Apache
WebLog Expert IIS,Apacheのログ解析
Windosアプリです。 IISのログ解析のご要望があり、 Windows7のクライアントにログをローカルにコピーしてから使用 https://www.weblogexpert.com/download.htm 試してないけれど、Apacheのログも解析出来るらしいぞ(۶•̀ᴗ•́)۶ Amazonおすすめ iPad 9世代 2021年最 …
SSL証明書適用 Apache2.2系 CentOS6
秘密鍵の作成 # cd /etc/httpd/conf/ssl # openssl md5 * > rand.dat # openssl genrsa -rand rand.dat -des3 2048 > 20170328-sslexample.com_r1.key 441 semi-random bytes loaded Generating RSA private …
Apache2.2系 400 Bad Request _のあるホスト設定でのエラー回避
サーバのリプレイ系案件。 ProxyPassReverseでローカル定義先のアプリに400エラーで到達出来なかった。 コンフィグ、バージョンを合わせたのに動かない。 そして旧環境ではなぜか動いていて何がいけないのかわからなかった(現在も不明)、協力を得て期日にリリース対応できました。 解決策 _のあるホスト(ドメイン)を使わない。そもそもRFC違反 Apa …
Apache2.4 [authz_core:error] [pid 18037] [client 127.0.0.1:xxxx] AHyyyy: client denied by server configuration:
authz_core:error ~ client denied by server configuration 2.2系から2.4系で変更になっている箇所 Order deny,allow Deny from all ↓ #Order deny,allow #Deny from all Require all denied Order …
【Solved】FreeBSD9.3 ApacheのHTTPSが有効にならない。
他ベンダーも同サーバをメンテナンスしており、去年と設定ファイルや環境が変わっていてびびる…。 # apachectl -t Syntax OK # apachectl stop # apachectl start 去年はこれでいけました。 そんなことは知らずに、 SSL証明書の交換を行ってApacheの再起動かけて反映させる。 HTTPは動 …
GeoIP Apache編
GeoIPでWEBへの国別アクセス制御 Apache編 寄稿しました。 # yum install httpd httpd-devel mod_geoip GeoIP GeoIP-devel GeoIP-data zlib-devel # firewall-cmd –add-service=http –zone=public # firewall-cmd –rel …
.htaccess リダイレクト
wwwありなしのリダイレクト wwwありにする <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^example\.com RewriteRule ^(.*) http://www.example.com/$1 [R=301,L] </IfModule> &nb …
CentOS7 Apache2.4系でのWEBサーバのgraceful Apache Nginx
Apache # systemctl reload httpd Nginx # systemctl reload nginx httpdのgracefulが廃止されて、reloadになったということ。 Nginxは元からreload 分かりやすくなりました。 Amazonおすすめ iPad 9世代 2021年最新作 iPad …
CentOS7 Apache+PHP-FPM
Nginxファースト。 そう思っても仕事ではApache+PHP-FPM構成もあったりするのだ。 # firewall-cmd –add-port=80/tcp –zone=public –permanent # firewall-cmd –reload # yum install -y httpd systemctl start h …
Apache2.4 IPでのアクセスを禁止する 公開したくないサイトの公開
こういう時! 身内向けの向けのコンテンツの公開 不特定多数に見せたくはないが、ガチガチにセキュリティで管理する必要はない 利便性は欲しいからインターネットでカジュアルにブラウザ閲覧したい Googleにインデックスされたり、想定していないアクセスは制御したい そういう用途ってあるのですよね。 IPでの直接アクセス禁止 # vi /etc/ht …
Out of memory: Kill process xxxx (httpd) 対応
環境 2CPU 8GB LAMP サイト数:20程度 Apacheのメモリが足りなくてOOMさんにぶった切られていた・・・! # tail -n 10000 /var/log/messages ・・・ Apr 2 10:05:12 ip-172-32-3-252 kernel: [231010.642871] [15704] 48 15704 126988 5603 191 4 0 …