前言
图床有效防止网站程序负载,所以我们很需要用到,图床来减轻vps 的压力
预览地址;https://wp.4545456.xyz/
宝塔安装
第一,我们要下载Chevereto图床的程序; 有免费与商业版选择,个人使用下载免费版的就够用了
免费版下载地址;https://github.com/Chevereto/Chevereto-Free
第二,解压到网站根部了
第三,在宝塔网站设置中的默认文档加入installer.php 如下图;
第四,在宝塔伪静态规则中加入以下代码;
# Chevereto nginx generated rules for https://image.nobugin.com/
## Disable access to sensitive files
location ~* /(app|content|lib)/.*\.(po|php|lock|sql)$ {
deny all;
}
## CORS headers
location ~* /.*\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js) {
add_header Access-Control-Allow-Origin "*";
}
## Upload path for image content only and set 404 replacement
location ^~ /images/ {
location ~* (jpe?g|png|gif) {
log_not_found off;
error_page 404 /content/images/system/default/404.gif;
}
return 403;
}
## Pretty URLs
location / {
index index.php;
try_files $uri $uri/ /index.php?$query_string;
}
# END Chevereto nginx rules
第五,在宝塔中创建mysql
访问域名或者地址进行安装,可以借助翻译工具
第六,安装完成后进行修改成中文,如下图
恭喜你安装完成,慢慢探索他的奥妙