1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/roles/calibre-web/templates/calibre-web.conf.j2

20 lines
542 B
Text
Raw Normal View History

2018-10-11 00:44:08 +00:00
# Used to work (in August 2018) but prevented http://box/books from working (in October 2018, https://github.com/iiab/iiab/issues/1196)
#<VirtualHost *:80>
# Unnec when "/proxy" is added to Proxy* directives further below
# <Location "{{ calibreweb_url }}" >
2018-10-11 00:19:22 +00:00
RequestHeader set X-SCRIPT-NAME {{ calibreweb_url }}
2018-10-11 00:44:08 +00:00
# Appears unnec:
RequestHeader set X-SCHEME http
2018-10-11 00:32:53 +00:00
ProxyPass /books http://localhost:{{ calibreweb_port }}/
2018-10-11 00:44:08 +00:00
# Appears unnec:
ProxyPassReverse /books http://localhost:{{ calibreweb_port }}/
2018-10-11 00:19:22 +00:00
# </Location>
2018-10-11 00:44:08 +00:00
2018-10-11 00:19:22 +00:00
#</VirtualHost>