[Apache]Fileを強制的にDownloadさせる設定
社内のServerにDownload専用のSiteを構築したときのMemo.
環境: CentOS 6.2, Apache 2.2.15
参考にしたのは下記。
httpd.confは下記ような感じ。
<VirtualHost *:80>
ServerName downloads.hoge.com
DocumentRoot /home/hoge/downloads
<Directory "/home/hoge/downloads">
Options None
AllowOverride None
Header Add Content-Disposition "attachment"
</Directory>
</VirtualHost>
Access Logを取るにはCustomLogを設定する。詳しくはGoogle先生で。
- Google検索: apache customlog
< Related Posts >