summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/apache2/coolwsd.conf3
-rw-r--r--etc/nginx/coolwsd.conf3
2 files changed, 5 insertions, 1 deletions
diff --git a/etc/apache2/coolwsd.conf b/etc/apache2/coolwsd.conf
index 4796f5e5d5..f7ecb6f665 100644
--- a/etc/apache2/coolwsd.conf
+++ b/etc/apache2/coolwsd.conf
@@ -33,3 +33,6 @@
# Download as, Fullscreen presentation and Image upload operations
ProxyPass /cool http://127.0.0.1:9980/cool
ProxyPassReverse /cool http://127.0.0.1:9980/cool
+ # Compatibility with integrations that use the /lool/convert-to endpoint
+ ProxyPass /lool http://127.0.0.1:9980/cool
+ ProxyPassReverse /lool http://127.0.0.1:9980/cool
diff --git a/etc/nginx/coolwsd.conf b/etc/nginx/coolwsd.conf
index b0fb7105bd..6d0814ea51 100644
--- a/etc/nginx/coolwsd.conf
+++ b/etc/nginx/coolwsd.conf
@@ -26,7 +26,8 @@
}
# download, presentation and image upload
- location ~ ^/cool {
+ # we accept 'lool' to be backward compatible
+ location ~ ^/(c|l)ool {
proxy_pass http://localhost:9980;
proxy_set_header Host $http_host;
}