/etc/apache2/sites-available/auth2db is in auth2db-frontend 0.2.5-2+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | Alias /auth2db "/usr/share/auth2db-frontend/www"
<Directory "/usr/share/auth2db-frontend/www">
	Options Indexes MultiViews FollowSymLinks
        DirectoryIndex index.php
	AllowOverride None
	Order deny,allow
	Deny from all
	
	# IMPORTANT!
	# Before making available this page to the whole world,
	#   take seriously changing default password.
	#
	Allow from 127.0.0.0/255.0.0.0 ::1/128
	
	# For a higher security, activate only SSL requests
	#   Of course, you'll have to have set up proper
	#   SSL certificates.
        #SSLRequireSSL
</Directory>
 |