Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support wallabag server with basic auth #360

Open
jeverling opened this issue Aug 15, 2023 · 2 comments
Open

support wallabag server with basic auth #360

jeverling opened this issue Aug 15, 2023 · 2 comments

Comments

@jeverling
Copy link

Hi, I would like to put my wallabag installation behind basic auth, as an additional security measure.

Right now, it seems like the extension doesn't support this, the URL doesn't get verified (without the username:password@ part in front of the domain it works fine).

It would be great if the extension supported connecting to https://username:[email protected].

@kamalmjt
Copy link

kamalmjt commented Jul 2, 2024

Same, i need the extension support basic auth for additional security.

@kamalmjt
Copy link

kamalmjt commented Jul 2, 2024

@jeverling I have done it by including authentication in the /api and /oauth routes.

Example config for nginx :


  location / {
                auth_basic "Clave Acceso";
                auth_basic_user_file /etc/nginx/.htpasswd;
                try_files $uri /app.php$is_args$args;
        }
        
 location /oauth/ {
                try_files $uri /app.php$is_args$args;
        }

        location /api/ {
                try_files $uri /app.php$is_args$args;
        }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants