Coder Social home page Coder Social logo

Comments (2)

cshum avatar cshum commented on June 8, 2024

Perhaps you can try the expire(timestamp) filter, alongside with URL signature?
https://github.com/cshum/imagor?tab=readme-ov-file#utility-filters
https://github.com/cshum/imagor?tab=readme-ov-file#url-signature

from imagor.

AlekseyArh avatar AlekseyArh commented on June 8, 2024

Is it possible to add "Authorization" Header on the image?

What i mean is Header for image output from imagor. it to prevent the image getting stealed.

You can use nginx as one of the options.

server {

    listen 80;
    listen [::]:80;
    server_name img.example.com;

    location / {
        if ($http_authorization != "Bearer 1234") {
            return 401;
        }
        proxy_pass http://imagor;
    }

}
# curl -I 'http://img.example.com/{...}/test.jpg'
HTTP/1.1 401 Unauthorized
# curl --header "Authorization: Bearer 1234" -I 'http://img.example.com/{...}/test.jpg'
HTTP/1.1 200 OK

Additionally, you can block by referer.

server {

    listen 80;
    listen [::]:80;
    server_name img.example.com;

    location / {
        if ($http_authorization != "Bearer 1234") {
            return 401;
        }
        valid_referers server_names ~(example\.com|test\.com);
        if ($invalid_referer) {
            return 403;
        }
        proxy_pass http://imagor;
    }

}
# curl --header "Authorization: Bearer 1234" -I 'http://img.example.com/{...}/test.jpg'
HTTP/1.1 403 Forbidden
# curl --header "Authorization: Bearer 1234" -I 'http://img.example.com/{...}/test.jpg' --header "referer:http://example.com"
HTTP/1.1 200 OK

from imagor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.