summaryrefslogtreecommitdiff
path: root/knot/ssp/conf/000-default.conf
diff options
context:
space:
mode:
Diffstat (limited to 'knot/ssp/conf/000-default.conf')
-rw-r--r--knot/ssp/conf/000-default.conf19
1 files changed, 19 insertions, 0 deletions
diff --git a/knot/ssp/conf/000-default.conf b/knot/ssp/conf/000-default.conf
new file mode 100644
index 0000000..7bccb8b
--- /dev/null
+++ b/knot/ssp/conf/000-default.conf
@@ -0,0 +1,19 @@
+<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