トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS   ログイン

システム関連/web/apache の変更点


#freeze
*apache tips [#d154dcc8]
#contents

**ポートを変えてポート毎に別のドキュメントルートを設定する。 [#r7096774]
httpd.confに以下を設定
 Listen 8080(Listenしたいポート)
 
 <VirtualHost *:8080>(別ポート apache 用の DocumentRoot 設定)
    DocumentRoot /var/other_docs
 </VirtualHost>

**アクセスログから画像やCSS等へのリクエストを除く [#m1dee70b]
 SetEnvIf Request_URI "\.(gif|png|jpg|jpeg|ico|js|css|exe|dll|asp|ida)$" nolog
 CustomLog logs/access_log common env=!nolog


**コメント [#b491f1e8]
#comment