Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / etc / apache.conf
blob04a934cd6e9e0dfe25205dcd16a4b770a6d8bd19
1 # This config file assume you are using starman with the app.psgi that can be
2 # found in the root directory of Koha, and that it listens on ports 5000-5001
4 <VirtualHost *:80>
5     # CHANGEME
6     ServerName intranet.koha-dev
8     ProxyPass / http://127.0.0.1:5000/
9     ProxyPassReverse / http://127.0.0.1:5000/
10 </VirtualHost>
12 <VirtualHost *:80>
13     # CHANGEME
14     ServerName opac.koha-dev
16     ProxyPass / http://127.0.0.1:5001/
17     ProxyPassReverse / http://127.0.0.1:5001/
18 </VirtualHost>