Chevereto是一款挺好用的个图床程序源码。今天在网上看到有人发了v3.20.10版本的破解版,所以试了一下,确实可以使用。
首页演示:
官网:https://chevereto.com/
demo地址:https://demo.chevereto.com/
破解版来自:https://www.moeloc.com/2435.html
版本更新:
Chevereto 3.20.10 (2021-07-20)
– Added namespaced chv.to/v3* links
– Added printed debug support for JSON actions
– Fixed bug with “ad” icon
– Fixed bug with set_time_limit
– Fixed user reported bugs [13496,13601,13605]
– Improved MariaDB 10.1, 10.2 and 10.3 support
– Removed redirect table
nginx伪静态规则:
# Chevereto Nginx rewrite rules # Make sure to place these inside your server{} block # Disable access to .ht* files location ~ /\.ht { deny all; } # Disable access to sensitive files in app path location ~ /(app|content|lib|importer)/.*\.(po|php|lock|sql|txt)$ { deny all; } # Disable log on not found images + image replacement location ~* (jpe?g|png|gif|webp) { log_not_found off; error_page 404 /content/images/system/default/404.gif; } # Enable CORS header (needed for CDN) location ~* \.(ttf|ttc|otf|eot|woff|woff2|css|js)$ { add_header Access-Control-Allow-Origin "*"; } # Force serve upload path as static content (match your upload folder if needed) location /images {} # Route dynamic request to index.php location / { try_files $uri $uri/ /index.php$is_args$query_string; }
apache伪静态规则:
# Apache and Chevereto Apache should work instantly as the whole configuration is on `.htaccess` files. The folder `chevereto` contains one of these files (note: dot files may be hidden in your filesystem). # Troubleshooting These are the most common issues with Apache: ## 404 /install Apache virtual host configuration requires that you allow `.htaccess` rules at the virtual host path. Search for "AllowOverride .htacess". ## RewriteBase In some servers the configuration requires a RewriteBase. Check the file at chevereto/.htaccess where you will find instructions about this workaround.