LogZilla を Cent OS にインストールする

Apache 2 の設定

設定例を示します。これは、バーチャルホストを使う例です。

  1. VPS へログイン
  2. 設定ファイルを編集する
    # vi /etc/httpd/conf/httpd.conf
    
    NameVirtualHost *:80
    • 先頭の # を外すだけです。
  3. 新しくファイルを作成する。
    # vi /etc/httpd/conf.d/logzilla.conf
    
    <VirtualHost *:80>
        ServerName     <<FQDN>>
        ServerAdmin    hogehoge@hogehoge.com
    
        DirectoryIndex index.php index.html
        DocumentRoot /var/www/logzilla/html
        <Directory "/var/www/logzilla/html">
            AllowOverride Options Indexes Limit AuthConfig
            Options FollowSymLinks
            Order allow,deny
            Allow from all
        </Directory>
    </VirtualHost>
    • AllowOverride Options または、All で .htaccess を有効にする必要があります。
  4. httpd を起動する。
    # service httpd start

前のページ 次のページ

 

関連するコンテンツ


コメントを残す


メモ - 以下の HTML タグと属性が利用できます。
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください