07 January 2026


                                          Apache Lounge Distribution

                                      mod_view 2.2 for Apache 2.4 Win32 VS18

# Binary by: Steffen
# Mail: info@apachelounge.com
# Home: http://www.apachelounge.com/

Build with Visual Studio 2026 (VS18)

# Install:

- Copy mod_view.so to your modules folder


# Add to your httpd.conf

LoadModule view_module modules/mod_view.so

# Configuration: See Manual.doc

# To Test:

Add the following example configuration to httpd.conf:

<IfModule mod_view.c>

    Alias /log "c:/apache24/logs"  

    <Directory /apache24/logs>
        ViewEnable on
        Require local
    </Directory>

</IfModule>

Replace c:/apache24/logs with the location of your log folder,
and edit the Require to your needs.

With the above example configuration, test the module specifying a URL of the form: 

http://localhost/logs/access.log?tail=20&refresh=20 

Replace acces.log with the name of an other log file you want to see in the folder c:/apache24/logs

You should see the last 20 lines of the access_log file every 20 seconds. 

If the log file has only <5 lines you do not see it in the browser.


Enjoy,


Steffen