Berikut ialah tutorial pemasangan dan pengoptimuman untuk Apache:
Pasang Apache:
Jalankan arahan berikut untuk memasang Apache pada sistem Linux:
sudo apt updatesudo apt install apache2
Konfigurasi Apache:
/etc/apache2/apache2.conf
. Buka fail menggunakan penyunting teks seperti nano atau vi:
sudo nano /etc/apache2/apache2.conf
Konfigurasikan perkara berikut mengikut keperluan:
Laraskan nama pelayan:
ServerName your_domain.com
Ganti your_domain.com
dengan nama domain atau alamat IP anda.
Laraskan zon waktu pelayan:
SetEnv TZ your_time_zone
Ganti your_time_zone
Untuk zon waktu anda, seperti your_time_zone
替换为你所在的时区,如 Asia/Shanghai
Asia / Shanghai
.
Mulakan semula Apache:
Laksanakan arahan berikut untuk memulakan semula perkhidmatan Apache:
sudo systemctl restart apache2
Pengoptimuman Apache:
Dayakan pemampatan Gzip:
Buka fail konfigurasi Apache:
sudo nano /etc/apache2/apache2.conf
Tambah yang berikut pada penghujung fail untuk mendayakan pemampatan Gzip:
<IfModule mod_deflate.c> SetOutputFilter DEFLATE AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/css text/javascript application/javascript application/x-javascript DeflateCompressionLevel 5</IfModule>
Dayakan Keep-Alive:
Buka fail konfigurasi Apache:
sudo nano /etc/apache2/apache2.conf
Tambah yang berikut pada penghujung fail untuk mendayakan Keep-Alive:
<IfModule mod_headers.c> Header set Connection keep-alive</IfModule>
Laraskan cache fail:
Buka fail konfigurasi Apache:
sudo nano /etc/apache2/apache2.conf
Tambah yang berikut pada penghujung fail untuk melaraskan tetapan cache fail:
<IfModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 month" 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 text/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" ExpiresByType application/pdf "access plus 1 month" ExpiresByType audio/x-wav "access plus 1 year" ExpiresByType audio/mpeg "access plus 1 year" ExpiresByType video/mpeg "access plus 1 year" ExpiresByType video/mp4 "access plus 1 year
”
ExpiresByType video/quicktime “akses tambah 1 tahun”
ExpiresByType video/x-ms-wmv “akses tambah 1 tahun”
ExpiresByType video/x-flv “akses tambah 1 tahun”</IfModule>
- 保存并关闭文件。5. 重启Apache: - 执行以下命令重启Apache服务:
sudo systemctl restart apache2 ```
Atas ialah kandungan terperinci Tutorial pemasangan dan pengoptimuman Apache.. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!