summaryrefslogtreecommitdiff
path: root/000-default.conf
diff options
context:
space:
mode:
authorJonas Kohl <git@jonaskohl.de>2024-09-08 17:53:55 +0200
committerJonas Kohl <git@jonaskohl.de>2024-09-08 17:53:55 +0200
commit415a0a96a76afbe7f1ad2f51862641793caf1b6c (patch)
tree1168316bff6a2ec04ee27db5ada5431ba6631ce4 /000-default.conf
Initial commit
Diffstat (limited to '000-default.conf')
-rw-r--r--000-default.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/000-default.conf b/000-default.conf
new file mode 100644
index 0000000..4e90b92
--- /dev/null
+++ b/000-default.conf
@@ -0,0 +1,18 @@
+ServerTokens Prod
+ServerSignature Off
+
+<VirtualHost *:80>
+ ServerName app
+
+ ServerAdmin mystic@jonaskohl.de
+ DocumentRoot /var/www/html
+
+ <Directory /var/www/html>
+ Options FollowSymLinks
+ AllowOverride All
+ Require all granted
+ </Directory>
+
+ ErrorLog ${APACHE_LOG_DIR}/error.log
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
+</VirtualHost>