| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /etc/apache2/conf-enabled/ |
Upload File : |
# Throughline performance settings — applies globally; safe defaults.
# HTTP/2 — protocol preference per vhost; the Protocols line in each SSL vhost
# also needs h2 enabled (set via sed below).
Protocols h2 http/1.1
# Compression: brotli for HTML+JS+CSS+SVG+JSON, gzip as fallback.
<IfModule mod_brotli.c>
AddOutputFilterByType BROTLI_COMPRESS text/html text/plain text/xml text/css text/javascript application/javascript application/json application/xml image/svg+xml application/atom+xml application/rss+xml
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript application/json application/xml image/svg+xml application/atom+xml application/rss+xml
</IfModule>
# Static-asset caching (Next.js fingerprints _next/static/* with long TTLs)
<IfModule mod_expires.c>
ExpiresActive On
<FilesMatch "\.(js|css|woff2|woff|ttf|svg|png|jpg|jpeg|webp|avif|ico)$">
ExpiresDefault "access plus 1 year"
Header set Cache-Control "public, max-age=31536000, immutable"
</FilesMatch>
<FilesMatch "\.(html|xml)$">
ExpiresDefault "access plus 5 minutes"
</FilesMatch>
</IfModule>