mirror of
https://github.com/YunoHost-Apps/transmission_ynh.git
synced 2024-09-04 01:46:12 +02:00
19 lines
554 B
Nginx Configuration File
19 lines
554 B
Nginx Configuration File
location PATHTOCHANGE/transmission {
|
|
proxy_pass http://127.0.0.1:9091PATHTOCHANGE/transmission;
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
more_clear_input_headers 'Accept-Encoding';
|
|
}
|
|
location PATHTOCHANGE/ {
|
|
proxy_pass http://127.0.0.1:9091/;
|
|
}
|
|
location PATHTOCHANGE/downloads {
|
|
alias /home/yunohost.transmission/completed/;
|
|
autoindex on;
|
|
autoindex_exact_size off;
|
|
|
|
# Include SSOWAT user panel.
|
|
include conf.d/yunohost_panel.conf.inc;
|
|
more_clear_input_headers 'Accept-Encoding';
|
|
}
|