<VirtualHost *:80>
	ServerAdmin webmaster@trygvis.io
	ServerName auth.trygvis.io
	DocumentRoot /srv/self-service-password

	ErrorLog ${APACHE_LOG_DIR}/error.log
	CustomLog ${APACHE_LOG_DIR}/access.log combined

	<Directory /srv/self-service-password>
		DirectoryIndex index.php
		AddDefaultCharset UTF-8

		Options Indexes FollowSymLinks
		AllowOverride None
		Require all granted
	</Directory>

</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet