Skip to content
Snippets Groups Projects
Commit 3b0cc565 authored by nimrod's avatar nimrod
Browse files

Collabora online.

parent 6380836b
Branches
Tags
No related merge requests found
map $host $code { default code; }
server {
listen 80;
listen [::]:80;
server_name code.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/www-acme-challenge.conf;
include snippets/redirect-https.conf;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
server_name code.shore.co.il;
include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf;
include snippets/security-txt.conf;
include snippets/ssl.conf;
# The following was copied (and modified) from
# https://www.collaboraoffice.com/code/nginx-reverse-proxy/.
# static files
location ^~ /loleaflet {
proxy_pass http://$code:9980$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
# WOPI discovery URL
location ^~ /hosting/discovery {
proxy_pass http://$code:9980$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
# Capabilities
location ^~ /hosting/capabilities {
proxy_pass http://$code:9980$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
# main websocket
location ~ ^/lool/(.*)/ws$ {
proxy_pass http://$code:9980$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
include snippets/websockets.conf;
}
# download, presentation and image upload
location ~ ^/lool {
proxy_pass http://$code:9980$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
}
# Admin Console websocket
location ^~ /lool/adminws {
proxy_pass http://$code:9980$request_uri;
proxy_http_version 1.1;
include snippets/proxy-headers.conf;
include snippets/websockets.conf;
}
}
...@@ -13,6 +13,7 @@ services: ...@@ -13,6 +13,7 @@ services:
- git.shore.co.il - git.shore.co.il
- lam.shore.co.il - lam.shore.co.il
- mta-sts.shore.co.il - mta-sts.shore.co.il
- code.shore.co.il
ports: ports:
- '80:80' - '80:80'
- '443:443' - '443:443'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment