Skip to content
Commits on Source (3)
libapache-mod-jk (1:1.2.44-2) unstable; urgency=medium
* Fix broken httpd-jk symlink.
Thanks to Andreas Beckmann for the report. (Closes: #910160)
-- Markus Koschany <apo@debian.org> Wed, 03 Oct 2018 13:38:45 +0200
libapache-mod-jk (1:1.2.44-1) unstable; urgency=medium
* New upstream version 1.2.44.
......
conf/jk.conf
conf/httpd-jk.conf
build/docs/images/add.gif
build/docs/images/code.gif
build/docs/images/design.gif
......
......@@ -53,7 +53,7 @@ Files: debian/*
Copyright: 2003, Stefan Gybas <sgybas@debian.org>
2009, Michael Koch <konqueror@gmx.de>
2011, Damien Raude-Morvan <drazzib@debian.org>
2015-2016, Markus Koschany <apo@debian.org>
2015-2018, Markus Koschany <apo@debian.org>
License: Apache-2.0
License: Apache-2.0
......
......@@ -6,13 +6,13 @@ The documentation can be found in the libapache-mod-jk-doc package.
At install, this module is enabled into existing Apache2 configuration.
Default configuration is located here :
/etc/apache2/mods-available/jk.conf
/etc/apache2/mods-available/httpd-jk.conf
One default worker named ajp13_worker, which connects to the localhost on
port 8009, is configured. If you need more workers or want to connect to
a remote tomcat you have to modify the workers.properties file.
By default, no webapp is mounted so you'll have to edit jk.conf
By default, no webapp is mounted so you'll have to edit httpd-jk.conf
to enable, at least, a JkMount directive for you webapp.
Please pay attention to global scope vs VirtualHost when setting JkMount
......
/etc/apache2/mods-available/jk.conf /etc/libapache2-mod-jk/httpd-jk.conf
/etc/apache2/mods-available/httpd-jk.conf /etc/libapache2-mod-jk/httpd-jk.conf
......@@ -9,10 +9,6 @@ export DEB_CFLAGS_MAINT_APPEND = -D_LARGEFILE_SUPPORT -D_LARGEFILE64_SOURCE -D_F
override_dh_auto_configure:
dh_auto_configure -- --with-apxs=/usr/bin/apxs2
override_dh_auto_build:
dh_auto_build
cp conf/httpd-jk.conf conf/jk.conf
override_dh_auto_install:
ifneq (,$(filter libapache-mod-jk-doc, $(shell dh_listpackages)))
cd xdocs && install -d ../build/docs/ && cp -R * ../build/docs/
......