ubuntu

Ubuntu Apache配置中如何优化静态资源加载

小樊
41
2025-09-03 06:31:20
栏目: 智能运维

在Ubuntu系统中,使用Apache服务器优化静态资源加载可以通过以下几个方面来实现:

1. 启用压缩

启用Gzip压缩可以显著减少传输的数据量,从而加快页面加载速度。

sudo a2enmod deflate

编辑Apache配置文件(通常是/etc/apache2/apache2.conf/etc/apache2/sites-available/your-site.conf),添加以下内容:

<IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript
</IfModule>

然后重启Apache服务:

sudo systemctl restart apache2

2. 启用缓存

通过设置缓存头,可以让浏览器缓存静态资源,减少重复请求。

编辑Apache配置文件,添加以下内容:

<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/jpg "access plus 1 year"
    ExpiresByType image/jpeg "access plus 1 year"
    ExpiresByType image/gif "access plus 1 year"
    ExpiresByType image/png "access plus 1 year"
    ExpiresByType text/css "access plus 1 month"
    ExpiresByType application/javascript "access plus 1 month"
    ExpiresByType application/x-javascript "access plus 1 month"
</IfModule>

然后重启Apache服务:

sudo systemctl restart apache2

3. 使用CDN

将静态资源放在CDN(内容分发网络)上可以显著提高加载速度,因为CDN会将资源缓存到全球各地的服务器上,用户可以从最近的服务器获取资源。

4. 启用KeepAlive

KeepAlive允许浏览器在一个TCP连接上发送多个请求,减少了建立和关闭连接的开销。

编辑Apache配置文件,添加或修改以下内容:

KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5

然后重启Apache服务:

sudo systemctl restart apache2

5. 优化图片

使用适当的图片格式(如WebP)和压缩工具(如TinyPNG)来减小图片文件的大小。

6. 使用HTTP/2

HTTP/2支持多路复用,可以在一个连接上同时发送多个请求,提高了性能。

确保你的Apache版本支持HTTP/2,并在配置文件中启用它:

LoadModule http2_module /usr/lib/apache2/modules/mod_http2.so

<VirtualHost *:443>
    Protocols h2 http/1.1
    # 其他配置...
</VirtualHost>

然后重启Apache服务:

sudo systemctl restart apache2

7. 使用缓存控制头

通过设置缓存控制头,可以让浏览器缓存静态资源,减少重复请求。

编辑Apache配置文件,添加以下内容:

<IfModule mod_headers.c>
    <FilesMatch "\.(jpg|jpeg|png|gif|css|js)$">
        Header set Cache-Control "max-age=31536000, public"
    </FilesMatch>
</IfModule>

然后重启Apache服务:

sudo systemctl restart apache2

通过以上这些方法,你可以显著提高Ubuntu系统中Apache服务器加载静态资源的速度。

0
看了该问题的人还看了