diff options
| -rw-r--r-- | apache2.conf | 4 | ||||
| -rw-r--r-- | html/obs/index.html | 13 | 
2 files changed, 17 insertions, 0 deletions
| diff --git a/apache2.conf b/apache2.conf index 3fb00d7..6cd31b0 100644 --- a/apache2.conf +++ b/apache2.conf @@ -161,6 +161,10 @@  		Require valid-user  	</Location> +	<Location "/obs/server-status"> +		SetHandler server-status +	</Location> +  	# Enable user-dirs  	UserDir public_html diff --git a/html/obs/index.html b/html/obs/index.html new file mode 100644 index 0000000..4c845d6 --- /dev/null +++ b/html/obs/index.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html lang="en"> +	<head> +		<title>Admin stuff</title> +	</head> +	<body> +		<h1>Admin stuff</h1> +		<ul> +			<li><a href="server-status">server status</a></li> +			<li><a href="awstats">awstats</a></li> +		</ul> +	</body> +</html> | 
