photo.gallery X3图片在线预览,相册显示文件夹

自动把文件夹显示成相册、自动设置首图预览图

之前一直使用files.photo.gallery,一开始看它官网就看到他主页是另一个主打图片预览的程序X3

今天就试了一下,作者也是良心,授权$75刀,不授权也可以用,但是网站底下显示他们官网的地址
相信这个难不了大佬们

安装教程:https://www.photo.gallery/docs/setup/

下载程序上传到网站根目录
https://www.photo.gallery/downloads/
(mini和full没啥区别,多了演示文件)

打开网址会主动检测
photo.gallery X3图片在线预览,相册显示文件夹

nginx还需要设置伪静态

  1.   location / {
  2.     if (!-e $request_filename){
  3.       # Rewrite any calls to html|json|xml|atom|rss if a folder matching * exists
  4.       rewrite (.+)\.(html|json|xml|atom|rss)$ $1/ last;
  5.       # Rewrite any calls to /render to the X3 image resizer
  6.       rewrite ^/render/. /app/parsers/slir/ last;
  7.       # Rewrite routes to X3 application index.php if they are non-existent files/dirs
  8.       rewrite ^(.*)$ /index.php?$1 last;
  9.     }
  10.   }
  11.   # Prevent web access to X3 /config and /_cache directories
  12.   location ~ /(config|_cache) {
  13.     deny all;
  14.   }

复制代码

登录后台:(虽然有中文,但是非常不完整)
http://localhost/panel/
账号密码 admin/admin

按要求去Settings › Advanced 关了Disable diagnostics就能访问首页了。

分享到:
赞(0)