Brian Read c8ce77259d * Mon May 12 2025 Brian Read <brianr@koozali.org> 11.0.0-1.sme
- Adding SM2 panel [SME: 13004]
- Upgrade to phpsysinfo 3.4.4
- Add code to delete inline styles and add css to make it look better.
- version saved / built uses the static version, which means no drops downs and choices.
2025-05-14 16:14:01 +01:00

36 lines
850 B
ApacheConf

<files phpsysinfo.ini>
# Deny all requests from Apache 2.0-2.2
<IfModule !mod_authz_core.c>
order deny,allow
deny from all
</IfModule>
# Deny all requests from Apache 2.4+
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</files>
<filesmatch "\.tmp$">
# Deny all requests from Apache 2.0-2.2
<IfModule !mod_authz_core.c>
order deny,allow
deny from all
</IfModule>
# Deny all requests from Apache 2.4+
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</filesmatch>
<filesmatch "\.log$">
# Deny all requests from Apache 2.0-2.2
<IfModule !mod_authz_core.c>
order deny,allow
deny from all
</IfModule>
# Deny all requests from Apache 2.4+
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
</filesmatch>