Image CDN Framework


API:


Upload Remote Image to CDN:

http://{cdn.domain.com}/api/upload?url={$url}

Check CDN Data:

https://{cdn.domain.com}/api/ping/{$md5}

Remove CDN Data:

http://{cdn.domain.com}/api/flush/{$md5}


How to use:


Full Image size

https://{cdn.domain.com}/f/{$md5}.{$ext}

Thumbnail Image

https://{cdn.domain.com}/r/{$width}x{$height}/{$md5}.{$ext}?hex={$hex}

https://{cdn.domain.com}/r/{$width}x/{$md5}.{$ext}?hex={$hex}

https://{cdn.domain.com}/r/x{$height}/{$md5}.{$ext}?hex={$hex}

https://{cdn.domain.com}/r/{$width}/{$md5}.{$ext}?hex={$hex}


Hetzner:


Storage Box: https://robot.hetzner.com/storage


Host machine - PRODUCTION:


Copy docker-compose.yml.prod.dist and change fields for Production Env.

Run on host machine (not docker inside):

apt update && apt install -y sshfs
nano /etc/fuse.conf

# IMPORTANT: UNCOMMENT user_allow_other line (php -> mount folder permission issue)
# Allow non-root users to specify the allow_other or allow_root mount options.
user_allow_other

nano docker-compose.yml
# Also check your docker-compose.yml for option -> allow_other: '',
# should be included to volume driver_opts

volumes:
  sshfs:
    driver: vieux/sshfs
    driver_opts:
      allow_other: ''
      sshcmd: {USERNAME}@u441936.your-storagebox.de:/home/arbd
      password: {PASSWORD}
      port: 23

Host machine - LOCAL / DEV:


Copy docker-compose.yml.local.dist and change fields for Local Env.

Don't use any external volumes and storages. Just local volumes mapping:

volumes:
  - './:/var/www/media'
  - './public/hetzner:/hetzner'

Constants Definitions:


Almost all path constants are defined in App\Services\Lookup class.

Change them if needed, and sync with docker-compose.yml volumes.

Main MOUNT PATH constant is ROOT_PATH:

ROOT_PATH = '/hetzner';
<?php

namespace App\Services;

class Lookup
{
    public const FONT_FILENAME = 'fonts/Roboto-Light.ttf';
    public const ROOT_PATH = '/hetzner';
    public const UPLOADS_PATH = 'uploads';
    public const FULL_PATH = 'full';
    public const THUMBS_PATH = 'thumbs';
    public const DEFAULT_HEX = 'ffffff';
    ...