All pastes #2069136 Raw Edit

Anonymous

public text v1 · immutable
#2069136 ·published 2011-05-25 19:55 UTC
rendered paste body
<VirtualHost status.mysite.org:80>
        ServerName status.mysite.org
        ServerAdmin me@mysite.org

        TransferLog /var/log/apache2/http-status.mysite.org-access_log

        ErrorLog /var/log/apache2/http-status.mysite.org-error_log

        DocumentRoot /var/www/status.mysite.org/current

        RewriteEngine On

#       RewriteBase /

        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteRule (.*) index.php?p=$1 [L,QSA]

        <FilesMatch "\.(ini)">
                Order allow,deny
        </FilesMatch>
</VirtualHost>