mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
7 lines
190 B
Nginx Configuration File
7 lines
190 B
Nginx Configuration File
|
location PATHTOCHANGE {
|
||
|
alias ALIASTOCHANGE;
|
||
|
if ($scheme = http) {
|
||
|
rewrite ^ https://$server_name$request_uri? permanent;
|
||
|
}
|
||
|
client_max_body_size 10G;
|
||
|
}
|