From f2317dd0b6d1e6c0cfc54a99f9752175d5c1f47f Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Fri, 28 Aug 2020 17:37:53 +0400 Subject: [PATCH] Bug 20582: Add very simple configuration file for Apache --- etc/apache.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 etc/apache.conf diff --git a/etc/apache.conf b/etc/apache.conf new file mode 100644 index 0000000000..04a934cd6e --- /dev/null +++ b/etc/apache.conf @@ -0,0 +1,18 @@ +# This config file assume you are using starman with the app.psgi that can be +# found in the root directory of Koha, and that it listens on ports 5000-5001 + + + # CHANGEME + ServerName intranet.koha-dev + + ProxyPass / http://127.0.0.1:5000/ + ProxyPassReverse / http://127.0.0.1:5000/ + + + + # CHANGEME + ServerName opac.koha-dev + + ProxyPass / http://127.0.0.1:5001/ + ProxyPassReverse / http://127.0.0.1:5001/ + -- 2.20.1