1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/diaspora_ynh.git synced 2024-09-03 18:26:13 +02:00
diaspora_ynh/conf/nginx.conf

33 lines
812 B
Nginx Configuration File
Raw Normal View History

2022-05-29 12:45:09 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2015-02-17 03:39:33 +01:00
2022-05-29 12:45:09 +02:00
# Path to source
2022-09-26 02:56:12 +02:00
alias __FINALPATH__/live/public/;
2019-12-02 21:04:01 +01:00
2022-09-26 02:56:12 +02:00
# Configure maximum picture size
# Note that Diaspora has a client side check set at 4M
2019-12-02 21:04:01 +01:00
client_max_body_size 5M;
client_body_buffer_size 256K;
2022-09-26 02:56:12 +02:00
# Proxy if requested file not found
2019-12-02 21:04:01 +01:00
try_files $uri @diaspora;
2022-05-29 12:45:09 +02:00
location __PATH__/assets/ {
2019-12-02 21:04:01 +01:00
expires max;
more_set_headers 'Cache-Control: public';
2019-12-02 21:04:01 +01:00
}
2022-05-29 12:45:09 +02:00
# Include SSOWAT user panel.
2019-12-02 21:04:01 +01:00
include conf.d/yunohost_panel.conf.inc;
2015-02-17 03:39:33 +01:00
}
2019-12-02 21:04:01 +01:00
location @diaspora {
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://unix:/run/__NAME__/diaspora.sock;
}