rm php-mcrypt, no longer in repos
This commit is contained in:
parent
d5397d3150
commit
5eb06bf3d4
|
@ -162,7 +162,6 @@
|
||||||
- php-gd
|
- php-gd
|
||||||
- php-imap
|
- php-imap
|
||||||
- php-intl
|
- php-intl
|
||||||
- php-mcrypt
|
|
||||||
- php-mysql
|
- php-mysql
|
||||||
- php-pspell
|
- php-pspell
|
||||||
- php-recode
|
- php-recode
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
<FilesMatch ".+\.ph(ar|p|tml)$">
|
||||||
|
SetHandler application/x-httpd-php
|
||||||
|
</FilesMatch>
|
||||||
|
<FilesMatch ".+\.phps$">
|
||||||
|
SetHandler application/x-httpd-php-source
|
||||||
|
# Deny access to raw php sources by default
|
||||||
|
# To re-enable it's recommended to enable access to the files
|
||||||
|
# only in specific virtual host or directory
|
||||||
|
Require all denied
|
||||||
|
</FilesMatch>
|
||||||
|
# Deny access to files without filename (e.g. '.php')
|
||||||
|
<FilesMatch "^\.ph(ar|p|ps|tml)$">
|
||||||
|
Require all denied
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
# Running PHP scripts in user directories is disabled by default
|
||||||
|
#
|
||||||
|
# To re-enable PHP in user directories comment the following lines
|
||||||
|
# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
|
||||||
|
# prevents .htaccess files from disabling it.
|
||||||
|
#<IfModule mod_userdir.c>
|
||||||
|
# <Directory /home/*/public_html>
|
||||||
|
# php_admin_flag engine Off
|
||||||
|
# </Directory>
|
||||||
|
#</IfModule>
|
|
@ -8,9 +8,9 @@
|
||||||
apache2_module:
|
apache2_module:
|
||||||
name: ssl
|
name: ssl
|
||||||
state: present
|
state: present
|
||||||
- name: php7.0
|
- name: php7.3
|
||||||
apache2_module:
|
apache2_module:
|
||||||
name: php7.0
|
name: php7.3
|
||||||
state: present
|
state: present
|
||||||
- name: rewrite
|
- name: rewrite
|
||||||
apache2_module:
|
apache2_module:
|
||||||
|
|
Loading…
Reference in New Issue