#!/usr/bin/env perl use Dancer ':syntax'; use FindBin '$RealBin'; use Plack::Runner; # For some reason Apache SetEnv directives dont propagate # correctly to the dispatchers, so forcing PSGI and env here # is safer. set apphandler => 'PSGI'; set environment => 'production'; my $psgi = path($RealBin, '..', 'bin', 'app.pl'); Plack::Runner->run($psgi);