2015-03-01 23:06:20 +01:00
|
|
|
# Proxy if requested file not found
|
|
|
|
try_files $uri @diaspora;
|
|
|
|
root ROOTOCHANGE/public;
|
2015-02-17 03:39:33 +01:00
|
|
|
|
2015-03-01 23:06:20 +01:00
|
|
|
location @diaspora {
|
|
|
|
# Configure maximum picture size
|
|
|
|
# Note that Diaspora has a client side check set at 4M
|
|
|
|
client_max_body_size 5M;
|
|
|
|
client_body_buffer_size 256K;
|
|
|
|
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_redirect off;
|
|
|
|
|
|
|
|
proxy_pass http://diaspora_server;
|
2015-02-17 03:39:33 +01:00
|
|
|
|
2015-03-01 23:06:20 +01:00
|
|
|
# Include SSOWAT user panel.
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
2015-02-17 03:39:33 +01:00
|
|
|
}
|
|
|
|
|