Skip to content

truist/gallery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gallery

This is a simple (Perl-based) image gallery for static images. Once set up, it is extremely simple to use - just drop a bunch of images into a directory and they will be served up with a reasonable layout (including mobile support), reasonable thumbnails, and reasonable navigation (including mobile swipe support). The original images will never be modified in any way.

It uses caches that are generated on-the-fly to improve performance, but even un-cached loads are reasonably fast. The entire cache can be wiped at any time and it will just regenerate as needed. The cached images are auto-rotated per the orientation EXIF settings, so you don't have to worry about pre-rotating them.

The gallery is somewhat configurable; see gallery.conf.default. You can also configure CSS via local.css.

The one (optional!) feature that requires some additional effort is that you can define a "highlight" image (or sub-album) for each album, and that will be used for the thumbnail for that album. To do so, create a symlink to the image (or sub-album) you want highlighted, and name the symlink #highlight. If you don't define a highlight, the thumbnail image will be selected randomly each time the page is loaded.

You can see a working example at https://gallery.rainskit.com/.

Installation

  1. Ensure you have the following things on your filesystem:

    1. Perl

    2. A clone of this repo

    3. A directory where your original images will go

      1. Outside the clone
      2. Readable by your production web server user
    4. A directory for the cache

      1. Outside the clone
      2. Readable and writable by your production web server user
    5. A place for log messages to go

      1. Outside the clone
      2. Writable by your web server
    6. The various perl modules this project depends on (see below)

      1. Findable by your web server user
  2. Copy gallery.conf.default to gallery.conf and set the variables to match the filesystem choices made above.

  3. Run the built-in web server, script/gallery:

    1. If you run it with no arguments, it will show you usage.

    2. To get started testing the site, try:

      script/gallery daemon -l http://*:8080

    3. As you test you might see errors about missing perl modules; you'll need to install them in a location your web server can find them.

    4. For production usage, I suggest running it like so:

      su -m $WEBUSER:$WEBGROUP -c "$GALLERY_DIR/script/gallery prefork -m production -l "http://127.0.0.1:$PORT" > $GALLERY_DIR/../logs/app.log 2>&1 &"

    5. ...and then use your "real" web server to reverse-proxy that internal port to the internet, however you like.

  4. Customize the site to your preferences:

    1. Configure the rest of the variables in gallery.conf to your liking. (You'll need to restart the site, if you do.)

    2. Add any site-specific static content (like favicon.ico) to public/.

    3. Configure any site-specific CSS in public/local.css.

About

Simple Perl-based image gallery for static images

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published