clip-zone

Open Source Laravel Youtube Clone

Stars
9
Committers
2

ClipZone

Open Source Youtube Clone

Technical detail

  • Backend : PHP 8.1, Laravel 10, MySQL
  • Frontend : Preact, Alpine JS, Boostrap 5.3

Installation

  • Clone project
  • Run make init command on the root folder

Then go to `http://localhost:8080

Run seeder

make reset

Storage

If you use the local FILESYSTEM_DISK:

  • Update docker/nginx.conf file : comment S3 FILESYSTEM_DISK block and uncomment LOCAL FILESYSTEM_DISK block

If you use the s3 FILESYSTEM_DISK:

  • Update docker/nginx.conf file : comment LOCAL FILESYSTEM_DISK block and uncomment S3 FILESYSTEM_DISK block
  • Connect to http://localhost:8900 with credentials defined in minio section in docker-compose.yml
  • Create new bucket and adjust AWS_BUCKET & AWS_URL env variables + proxy_pass directive in nginx
  • Define following policy for the created bucket
  • Generate secret key and insert this last one in proxy_set_header User-Agent in nginx and aws:UserAgent in json policy
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Public Access",
            "Effect":"Allow",
            "Principal":{
                "AWS":"*"
            },
            "Action":["s3:GetObject"],
            "Resource":[
                "arn:aws:s3:::clipzone/avatars/*",
                "arn:aws:s3:::clipzone/banners/*",
                "arn:aws:s3:::clipzone/categories/*"
            ]
        },
        {
            "Sid": "Video Access",
            "Effect":"Allow",
            "Principal":{
                "AWS":"*"
            },
            "Action":["s3:GetObject"],
            "Resource":[
                "arn:aws:s3:::clipzone/videos/*"
            ],
            "Condition": {
                "StringLike": {
                    "aws:UserAgent": "SECRET"
                }
            }
        }
    ]
}

Contributing

We encourage you to contribute to ClipZone !!

Trying to report a possible security vulnerability in ClipZone ? Consider using email : [email protected] with clear description of security vulnerability.

License

ClipZone is made available under the MIT License.

Credits

ClipZone is created and maintained by Anton Bourtnik