Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

cernicc/apache-server-status

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apache Server Status Example (mod_status)

Docker image builded from this repository is used for showing status of Apache server. When container is started visit http://localhost/server-status

For using in production change

<Location /server-status>
    SetHandler server-status
    Order allow,deny
    Allow from all
</Location>

to something like

<Location /server-status> 
    SetHandler server-status 
    Order allow,deny
    Deny from all
    Allow from 192.168.1.100
</Location>

Where 192.168.1.100 is your internal IP if accessing internally or your external IP. This will restrict it so not just anyone can access server status.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages