nicosomb/wallabag-camo-bundle

Add an http proxy to route images through SSL for your wallabag instance.

Maintainers

👁 nicosomb

Package info

github.com/nicosomb/wallabag-camo-bundle

Type:symfony-bundle

pkg:composer/nicosomb/wallabag-camo-bundle

Statistics

Installs: 2 682

Dependents: 0

Suggesters: 0

Stars: 5

Open Issues: 0

1.0.0-alpha.1 2025-06-12 12:26 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 533c9a3deb310d974b099c96aae125ce2bbc6a82

bundleproxycamosymfony3wallabagwallabag-plugin

This package is auto-updated.

Last update: 2026-06-12 14:53:50 UTC


README

This bundle allows you to add a proxy for your wallabag images thanks to camo.

Requirements

  • wallabag >= 2.2.2

Installation

Download the bundle

composer require nicosomb/wallabag-camo-bundle

Enable the bundle

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
 public function registerBundles()
 {
 $bundles = array(
 // ...

 new Nicosomb\WallabagCamoBundle\NicosombWallabagCamoBundle(),
 );

 // ...
 }

 // ...
}

Configure your application

# app/config/config.yml

nicosomb_wallabag_camo:
 key: YOUR_CAMO_KEY
 domain: your-wallabag.herokuapp.com

Setting camo_images_enabled

You need to create a new setting, camo_images_enabled.

INSERT INTO `wallabag_internal_setting` (`name`, `value`, `section`) VALUES ('camo_images_enabled', 1, 'misc');