FileGator - 开源免费 Web 文件管理器

  FileGator 是一个免费的、开源的、自托管的 Web 应用程序,用于管理文件和文件夹。

  您可以管理本地存储库文件夹(在服务器硬盘上)中的文件,也可以连接到其他存储适配器(见下文)。

  FileGator 具有多用户支持,因此您可以让管理员和其他用户使用不同的访问权限、角色和主文件夹管理文件。

  支持所有基本文件操作:复制、移动、重命名、创建、删除、压缩、解压缩、下载、上传。

  如果允许,用户可以一次下载多个文件或文件夹。

  文件上传支持拖放、进度条、暂停和恢复。上传是分块的,因此无论服务器的配置如何,您都应该能够上传大文件。

Snipaste20240630223247.png

部署

默认方式 - 浏览器管理文件或文件夹

docker run -p 8080:8080 --privileged=true -u=root --restart always -d filegator/filegator

文件夹操作方式 - 使用此方式部署,浏览器页面中上传、新建的文件或文件夹将不可看,若需上传文件,将文件或文件夹直接上传到服务器的 /home/power/filegator 目录即可,无需通过Web页面上传
此方式适合主机目录已有大量文件,直接映射即可访问,无需重新上传

  • Docker 部署
  • 注:/home/power/filegator 为主机目录可自定义,将文件或文件夹上传至该目录后,访问 FileGator 即可看到所上传的文件
docker run -p 8080:8080 --privileged=true -u=root --restart always -v /home/power/filegator:/var/www/filegator/repository -d filegator/filegator

访问FileGator

  • FileGator 部署后,浏览器访问:http://YOUR_IP:8080/,默认用户名和密码为:admin/admin123

image.png

  • 登录后立即点击 Admin 修改密码

image.png

中文设置

  • FileGator 默认显示为英文,若需修改默认显示为中文,执行以下命令修改 configuration.php 文件
  • 查看容器 ID
# docker ps -a

image.png

  • 在主机中创建一个 configuration.php 文件,写入以下内容,其中 'language' => 'english', 修改为 'language' => 'chinese',,其余未变
<?php

return [
    'public_path' => APP_PUBLIC_PATH,
    'public_dir' => APP_PUBLIC_DIR,
    'overwrite_on_upload' => false,
    'timezone' => 'UTC', // https://www.php.net/manual/en/timezones.php
    'download_inline' => ['pdf'], // download inline in the browser, array of extensions, use * for all
    'lockout_attempts' => 5, // max failed login attempts before ip lockout
    'lockout_timeout' => 15, // ip lockout timeout in seconds

    'frontend_config' => [
        'app_name' => 'FileGator',
        'app_version' => APP_VERSION,
        'language' => 'chinese',
        'logo' => 'https://filegator.io/filegator_logo.svg',
        'upload_max_size' => 100 * 1024 * 1024, // 100MB
        'upload_chunk_size' => 1 * 1024 * 1024, // 1MB
        'upload_simultaneous' => 3,
        'default_archive_name' => 'archive.zip',
        'editable' => ['.txt', '.css', '.js', '.ts', '.html', '.php', '.json', '.md'],
        'date_format' => 'YY/MM/DD hh:mm:ss', // see: https://momentjs.com/docs/#/displaying/format/
        'guest_redirection' => '', // useful for external auth adapters
        'search_simultaneous' => 5,
        'filter_entries' => [],
    ],

    'services' => [
        'Filegator\Services\Logger\LoggerInterface' => [
            'handler' => '\Filegator\Services\Logger\Adapters\MonoLogger',
            'config' => [
                'monolog_handlers' => [
                    function () {
                        return new \Monolog\Handler\StreamHandler(
                            __DIR__.'/private/logs/app.log',
                            \Monolog\Logger::DEBUG
                        );
                    },
                ],
            ],
        ],
        'Filegator\Services\Session\SessionStorageInterface' => [
            'handler' => '\Filegator\Services\Session\Adapters\SessionStorage',
            'config' => [
                'handler' => function () {
                    $save_path = null; // use default system path
                    //$save_path = __DIR__.'/private/sessions';
                    $handler = new \Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler($save_path);

                    return new \Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage([
                            "cookie_samesite" => "Lax",
                            "cookie_secure" => null,
                            "cookie_httponly" => true,
                        ], $handler);
                },
            ],
        ],
        'Filegator\Services\Cors\Cors' => [
            'handler' => '\Filegator\Services\Cors\Cors',
            'config' => [
                'enabled' => APP_ENV == 'production' ? false : true,
            ],
        ],
        'Filegator\Services\Tmpfs\TmpfsInterface' => [
            'handler' => '\Filegator\Services\Tmpfs\Adapters\Tmpfs',
            'config' => [
                'path' => __DIR__.'/private/tmp/',
                'gc_probability_perc' => 10,
                'gc_older_than' => 60 * 60 * 24 * 2, // 2 days
            ],
        ],
        'Filegator\Services\Security\Security' => [
            'handler' => '\Filegator\Services\Security\Security',
            'config' => [
                'csrf_protection' => true,
                'csrf_key' => "123456", // randomize this
                'ip_allowlist' => [],
                'ip_denylist' => [],
                'allow_insecure_overlays' => false,
            ],
        ],
        'Filegator\Services\View\ViewInterface' => [
            'handler' => '\Filegator\Services\View\Adapters\Vuejs',
            'config' => [
                'add_to_head' => '',
                'add_to_body' => '',
            ],
        ],
        'Filegator\Services\Storage\Filesystem' => [
            'handler' => '\Filegator\Services\Storage\Filesystem',
            'config' => [
                'separator' => '/',
                'config' => [],
                'adapter' => function () {
                    return new \League\Flysystem\Adapter\Local(
                        __DIR__.'/repository'
                    );
                },
            ],
        ],
        'Filegator\Services\Archiver\ArchiverInterface' => [
            'handler' => '\Filegator\Services\Archiver\Adapters\ZipArchiver',
            'config' => [],
        ],
        'Filegator\Services\Auth\AuthInterface' => [
            'handler' => '\Filegator\Services\Auth\Adapters\JsonFile',
            'config' => [
                'file' => __DIR__.'/private/users.json',
            ],
        ],
        'Filegator\Services\Router\Router' => [
            'handler' => '\Filegator\Services\Router\Router',
            'config' => [
                'query_param' => 'r',
                'routes_file' => __DIR__.'/backend/Controllers/routes.php',
            ],
        ],
    ],
];
  • 将修改后的 configuration.php 文件复制到容器内,cb79083e63cb 为上文中获取到的容器ID,根据实际修改
# docker cp configuration.php cb79083e63cb:/var/www/filegator/

image.png


标题:FileGator - 开源免费 Web 文件管理器
作者:Mune
地址:https://cnxiaobai.com/articles/2024/06/30/1719759752607.html

    评论
    0 评论
avatar

取消