温馨提示×

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

小樊
42
2025-10-06 12:00:41
栏目: 智能运维

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

1. 启用和配置缓存

使用mod_expires模块来设置静态资源的缓存策略。

sudo a2enmod expires 

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

<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/pdf "access plus 1 month" ExpiresByType text/x-javascript "access plus 1 month" ExpiresByType application/javascript "access plus 1 month" ExpiresByType application/x-shockwave-flash "access plus 1 month" ExpiresByType image/x-icon "access plus 1 year" ExpiresDefault "access plus 2 days" </IfModule> 

2. 启用Gzip压缩

使用mod_deflate模块来启用Gzip压缩。

sudo a2enmod deflate 

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

<IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml AddOutputFilterByType DEFLATE image/svg+xml image/x-icon font/opentype application/vnd.ms-fontobject application/x-font-ttf font/eot </IfModule> 

3. 启用KeepAlive

KeepAlive可以减少TCP连接的建立和关闭次数,从而提高性能。

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

KeepAlive On MaxKeepAliveRequests 100 KeepAliveTimeout 5 

4. 调整MaxClients

MaxClients参数控制Apache可以同时处理的最大请求数。根据服务器的内存和CPU资源进行调整。

编辑Apache配置文件,找到<IfModule mpm_prefork_module>部分,调整MaxClients参数:

<IfModule mpm_prefork_module> StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 </IfModule> 

5. 启用静态资源压缩

使用mod_deflate模块来压缩静态资源。

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

<IfModule mod_deflate.c> AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml AddOutputFilterByType DEFLATE image/svg+xml image/x-icon font/opentype application/vnd.ms-fontobject application/x-font-ttf font/eot </IfModule> 

6. 使用CDN

如果可能,使用内容分发网络(CDN)来分发静态资源,这样可以减轻服务器的负载并提高加载速度。

7. 优化图片

使用工具如ImageOptimTinyPNG等来压缩图片,减少图片的大小。

8. 启用HTTP/2

HTTP/2可以显著提高页面加载速度。

编辑Apache配置文件,启用HTTP/2:

sudo a2enmod http2 

编辑Apache配置文件,找到<VirtualHost>部分,添加以下内容:

Protocols h2 http/1.1 

9. 重启Apache

完成上述配置后,重启Apache服务器以应用更改:

sudo systemctl restart apache2 

通过以上步骤,你可以显著优化Ubuntu上Apache服务器的静态资源加载性能。

0