f6a76aae0c
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
18 lines
490 B
ApacheConf
18 lines
490 B
ApacheConf
# 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
|
|
|
|
<VirtualHost *:80>
|
|
# CHANGEME
|
|
ServerName intranet.koha-dev
|
|
|
|
ProxyPass / http://127.0.0.1:5000/
|
|
ProxyPassReverse / http://127.0.0.1:5000/
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:80>
|
|
# CHANGEME
|
|
ServerName opac.koha-dev
|
|
|
|
ProxyPass / http://127.0.0.1:5001/
|
|
ProxyPassReverse / http://127.0.0.1:5001/
|
|
</VirtualHost>
|