mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
64 lines
2.1 KiB
Nginx Configuration File
64 lines
2.1 KiB
Nginx Configuration File
|
|
location __PATH__ {
|
|
proxy_pass http://127.0.0.1:__PORT_SEAHUB__;
|
|
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_set_header X-Forwarded-Host $server_name;
|
|
|
|
proxy_read_timeout 1200s;
|
|
client_max_body_size 0;
|
|
|
|
access_log /var/log/nginx/seahub.access.log;
|
|
error_log /var/log/nginx/seahub.error.log;
|
|
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
}
|
|
|
|
location __PATH__/media/ {
|
|
alias __INSTALL_DIR__/seafile-server-latest/seahub/media/;
|
|
}
|
|
|
|
location /seafhttp/ {
|
|
proxy_pass http://127.0.0.1:__PORT_FILESERVER__/;
|
|
proxy_connect_timeout 36000s;
|
|
proxy_read_timeout 36000s;
|
|
proxy_send_timeout 36000s;
|
|
|
|
client_max_body_size 0;
|
|
proxy_request_buffering off;
|
|
|
|
access_log /var/log/nginx/seafhttp.access.log;
|
|
error_log /var/log/nginx/seafhttp.error.log;
|
|
}
|
|
|
|
location /notification/ping {
|
|
proxy_pass http://127.0.0.1:8083/ping;
|
|
access_log /var/log/nginx/notification.access.log;
|
|
error_log /var/log/nginx/notification.error.log;
|
|
}
|
|
|
|
location /notification {
|
|
proxy_pass http://127.0.0.1:8083/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
access_log /var/log/nginx/notification.access.log;
|
|
error_log /var/log/nginx/notification.error.log;
|
|
}
|
|
|
|
location /seafdav {
|
|
proxy_pass http://127.0.0.1:__PORT_WEBDAV__/seafdav;
|
|
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_set_header X-Forwarded-Host $server_name;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
|
|
proxy_read_timeout 1200s;
|
|
client_max_body_size 0;
|
|
proxy_request_buffering off;
|
|
|
|
access_log /var/log/nginx/seafdav.access.log;
|
|
error_log /var/log/nginx/seafdav.error.log;
|
|
}
|