view modules/website/files/php.conf @ 130:eb32a4978a7c puppet-3.6

Be less agressive with blocking on the grounds of SPF
author IBBoard <dev@ibboard.co.uk>
date Thu, 06 Oct 2016 19:02:30 +0100
parents 5967c1b18860
children aad5c00b0525
line wrap: on
line source

#Webtatic PHP config - note the different files used!

#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule !worker.c>
  LoadModule php7_module modules/libphp7.so
</IfModule>
<IfModule worker.c>
  LoadModule php7_module modules/libphp7-zts.so
</IfModule>

<IfModule php7_module>
	#
	# Cause the PHP interpreter to handle files with a .php extension.
	#
	AddHandler php7-script .php
	AddType text/html .php
	
	#
	# Add index.php to the list of files that will be served as directory
	# indexes.
	#
	DirectoryIndex index.php
</IfModule>
<IfModule !php7_module>
	<FilesMatch "\.php$">
	        Require all denied
	</FilesMatch>
</IfModule>