bd77006d89
SamDrucker is a collection of small components which create a centralized list of all packages on all hosts. The client is at sysutils/samdruckerclientshell
16 lines
438 B
Text
16 lines
438 B
Text
<IfModule !php7_module>
|
|
LoadModule php7_module %%APACHEMODDIR%%/libphp7.so
|
|
</IfModule>
|
|
|
|
<FilesMatch "\.php$">
|
|
SetHandler application/x-httpd-php
|
|
</FilesMatch>
|
|
|
|
<VirtualHost :80>
|
|
ServerAdmin root@example.org
|
|
ServerName samdrucker.int.example.org
|
|
ErrorLog "/var/log/apache/samdrucker-error.log"
|
|
CustomLog "/var/log/apache/samdrucker-access.log" common
|
|
|
|
DocumentRoot "%%WWWDIR%%"
|
|
</VirtualHost>
|