Skip to content
Jon Crain edited this page Dec 3, 2018 · 2 revisions

Apache Setup

Running MunkiReport using Apache is very common. Below is an example setup.

Example Apache .vhost config

<VirtualHost *:80>
  ServerAdmin webmaster@example.com
  ServerName  munkireport-php.example.com
  ServerAlias munkireport-php.example.com

  AddDefaultCharset utf-8
  DocumentRoot /srv/munkireport-php
    <Directory />
        Options FollowSymLinks
    </Directory>
  LogLevel warn
  CustomLog /var/log/apache2/munkireport-php.example.com-access.log combined
  ErrorLog /var/log/apache2/munkireport-php.example.com-error.log
</VirtualHost>

Running MunkiReport with mod_rewrite

If you're running munkireport on an apache webserver and you want to use mod_rewrite (which gives you nicer urls), you'll have to add the following to .env:

INDEX_PAGE=""
Clone this wiki locally