vps交流

YetiShare File Hosting 5.3.0 最新版 去授权


本帖最后由 mgwx 于 2022-1-8 22:13 编辑

YetiShare File Hosting 5.3.0 最新版 去授权

演示站 https://yetishare.com/index.html
下载站 https://server.zyku.xyz/do.php?id=70
资源库 https://zyku.me/resources/34/

进收藏吃灰吧YetiShare File Hosting 5.3.0 最新版 去授权
几年前花了99刀买的正版,又话几十刀买了插件,最后吃灰

junhan 发表于 2022-1-8 21:54
几年前花了99刀买的正版,又话几十刀买了插件,最后吃灰

卧槽 大佬 来个宝塔 伪静态

YetiShare File Hosting 5.3.0 最新版 去授权
搭好了   那位大佬发个宝塔伪静态

mgwx 发表于 2022-1-8 22:14
搭好了   那位大佬发个宝塔伪静态

这个4.5.5的你看能不能用

  1. client_max_body_size 5G;
  2. # allow for paths ending with forward slashes
  3. rewrite ^/app/(.*)/ /plugins/webdav/site/control/$1 last;
  4. rewrite ^/app/(.*) /plugins/webdav/site/control/$1 last;
  5. # all webdav requests
  6. location /plugins/webdav/site/control/ {
  7. fastcgi_split_path_info ^(.+.php)(/.+)$;
  8. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  9. gzip off;
  10. fastcgi_pass 127.0.0.1:9001;
  11. fastcgi_index index.php;
  12. fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;
  13. include fastcgi_params;
  14. }
  15. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  16. location ~ .php$ {
  17. if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; }
  18. fastcgi_pass 127.0.0.1:9001;
  19. fastcgi_index index.php;
  20. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  21. fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;
  22. include fastcgi_params;
  23. }
  24. #location / {
  25. if (!-e $request_filename) {
  26. rewrite ^/(.*) /index.php?_page_url=$1 last;
  27. }
  28. #}
  29. location /files/ {
  30. internal;
  31. }
  32. # these locations would be hidden by .htaccess normally
  33. location /core/logs/ {
  34. deny all;
  35. }

复制代码