11 lines
242 B
Nginx Configuration File
11 lines
242 B
Nginx Configuration File
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
||
|
location __PATH__/ {
|
||
|
|
||
|
# Path to source
|
||
|
alias __INSTALL_DIR__/;
|
||
|
|
||
|
client_max_body_size 10M;
|
||
|
|
||
|
# Include SSOWAT user panel's shortcut tile.
|
||
|
include conf.d/yunohost_panel.conf.inc;
|
||
|
}
|