XuLaLa.Tech

首页客户端下载Windows 使用V2Ray 教程SSR 教程Clash 教程

nginx中部署wordpress

2025.04.09

wordpress是世界上最受欢迎的cms,nginx是世界性能最好的web服务器之一,通过优化,并发性能可以达到十万以上,所以WordPress的部署中用到nginx成为必然,那如何在nginx中部署WordPress呢?

直接上nginx配置文件,具体如下:

# Upstream to abstract backend connection(s) for php
upstream php {
server unix:/tmp/php-cgi.socket;
server 127.0.0.1:9000;
}
server {
## Your website name goes here.
server_name domain.tld;
## Your only path reference.
root /var/www/wordpress;
## This should be in your http block and if it is, it's not needed here.
index index.php;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
}
location / {
# This is cool because no php is touched for static content.
# include the "?$args" part so non-default permalinks doesn't break when using query string
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
include fastcgi_params;
fastcgi_intercept_errors on;
fastcgi_pass php;
#The following parameter can be also included in fastcgi_params file
fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
}

nginx可以优化点:

  1. 开启gzip压缩
  2. 开启图片缓存,大部分图片很长时间都不会变的
  3. 配置nginx缓存;

WordPress优化

  1. 开启cache插件;
  2. 开启php的opcache
  3. 优化php-fpm

通过上面的配置,WordPress的访问速度可以达到很快,这对于一个网站来说,是非常有利的。

© 2010-2022 XuLaLa 保留所有权利 本站由 WordPress 强力驱动
请求次数:69 次,加载用时:0.665 秒,内存占用:32.19 MB