summarylogtreecommitdiffstats
path: root/apache.conf
blob: 8f56901ff4ebf3778aa969a17310ea538f409064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Required modules: dir_module, php8_module

<IfModule dir_module>
	LoadModule php8_module modules/libphp.so
	DirectoryIndex index.php index.html
	<FilesMatch "\.php$">
		SetHandler application/x-httpd-php
	</FilesMatch>
	<FilesMatch "\.phps$">
		SetHandler application/x-httpd-php-source
	</FilesMatch>
</IfModule>