Website/pastebin/.htaccess

13 lines
422 B
ApacheConf
Raw Normal View History

2023-03-02 21:10:11 -05:00
RewriteEngine on
RewriteCond !%{HTTP_USER_AGENT} "Let's Encrypt validation server" [NC]
RewriteCond %{HTTP_USER_AGENT} ^.*(bot|spider|crawl|https?://|WhatsApp|SkypeUriPreview|facebookexternalhit) [NC]
RewriteRule .* - [R=403,L]
<IfModule mod_php7.c>
2023-03-02 21:11:19 -05:00
php_value max_execution_time 300
php_value post_max_size 100M
php_value upload_max_size 100M
php_value upload_max_filesize 100M
2023-03-02 21:10:11 -05:00
php_value max_file_uploads 100
</IfModule>