summaryrefslogtreecommitdiff
path: root/000-default.conf
blob: 4e90b92dc0d169c3517cd0fe57fc24c905f0f8f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>