aboutsummaryrefslogtreecommitdiff
path: root/app/build/sogo/sogo.nginx.conf
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-01-16 17:07:01 +0100
committerAlex Auvolat <alex@adnab.me>2021-01-16 17:07:01 +0100
commitc74dc92febd1841c8ea5ff31caab0f941d57527d (patch)
treed05a203d95cac988952799667ec43c327a5d9038 /app/build/sogo/sogo.nginx.conf
parent0c4ee40e01c95d7bf73236cbead5cc261f67eb9d (diff)
downloadinfrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.tar.gz
infrastructure-c74dc92febd1841c8ea5ff31caab0f941d57527d.zip
Proposal: reorganize app/ folder by modules
Diffstat (limited to 'app/build/sogo/sogo.nginx.conf')
-rw-r--r--app/build/sogo/sogo.nginx.conf83
1 files changed, 0 insertions, 83 deletions
diff --git a/app/build/sogo/sogo.nginx.conf b/app/build/sogo/sogo.nginx.conf
deleted file mode 100644
index ad920a5..0000000
--- a/app/build/sogo/sogo.nginx.conf
+++ /dev/null
@@ -1,83 +0,0 @@
-server {
- listen 8080;
- server_name default_server;
- root /usr/lib/GNUstep/SOGo/WebServerResources/;
-
- ## requirement to create new calendars in Thunderbird ##
- proxy_http_version 1.1;
-
- # Message size limit
- client_max_body_size 50m;
- client_body_buffer_size 128k;
-
- location = / {
- rewrite ^ '/SOGo';
- allow all;
- }
-
- location = /principals/ {
- rewrite ^ '/SOGo/dav';
- allow all;
- }
-
- location ^~/SOGo {
- proxy_pass 'http://127.0.0.1:20000';
- proxy_redirect 'http://127.0.0.1:20000' default;
- # forward user's IP address
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header Host $host;
- proxy_set_header x-webobjects-server-protocol HTTP/1.0;
- proxy_set_header x-webobjects-remote-host 127.0.0.1;
- proxy_set_header x-webobjects-server-name $server_name;
- proxy_set_header x-webobjects-server-url $scheme://$host;
- proxy_set_header x-webobjects-server-port $server_port;
- proxy_connect_timeout 90;
- proxy_send_timeout 90;
- proxy_read_timeout 90;
- proxy_buffer_size 4k;
- proxy_buffers 4 32k;
- proxy_busy_buffers_size 64k;
- proxy_temp_file_write_size 64k;
- break;
- }
-
- location /SOGo.woa/WebServerResources/ {
- alias /usr/lib/GNUstep/SOGo/WebServerResources/;
- allow all;
- expires max;
- }
-
- location /SOGo/WebServerResources/ {
- alias /usr/lib/GNUstep/SOGo/WebServerResources/;
- allow all;
- expires max;
- }
-
- location (^/SOGo/so/ControlPanel/Products/([^/]*)/Resources/(.*)$) {
- alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
- expires max;
- }
-
- location (^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$) {
- alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2;
- expires max;
- }
-
- location ^~ /Microsoft-Server-ActiveSync {
- access_log /var/log/nginx/activesync.log;
- error_log /var/log/nginx/activesync-error.log;
-
- proxy_connect_timeout 75;
- proxy_send_timeout 3600;
- proxy_read_timeout 3600;
- proxy_buffers 64 256k;
-
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
-
- proxy_pass http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync;
- proxy_redirect http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync /;
- }
-}