找回密码
 立即加入
搜索
查看: 3376|回复: 0

在树莓派上安装wordpress

[复制链接]

43

主题

47

回帖

847

积分

管理员

积分
847
发表于 2020-5-1 13:14 | 显示全部楼层 |阅读模式 |回复 |
一,安装好树莓派的web服务器
教程:https://yuln.com/thread-49-1-1.html

二,下载wordpress网站程序到树莓派
wget https://wordpress.org/latest.zip

wget https://github.com/WordPress/WordPress/archive/5.4.zip


三,配置nginx

server {
        listen 80;

        server_name abcd.com;
        root /var/www/abcd.com;
        index index.php index.html index.htm default.html;

        location / {
                try_files $uri $uri/ =404;
        }

        # pass the PHP scripts to FastCGI server
        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/run/php/php7.3-fpm.sock;
        }

        # optimize static file serving
        location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$ {
                access_log /var/log/nginx/abcd.com.access.log;
                log_not_found off;
                expires 30d;
        }

        # deny access to .htaccess files, should an Apache document root conflict with nginx
        location ~ /\.ht {
                deny all;
        }
}

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即加入

本版积分规则

Archiver|手机版|小黑屋|玉玲珑

GMT+8, 2024-4-27 12:46 , Processed in 0.022777 second(s), 20 queries .

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表