Share: Use UTF-8.
This commit is contained in:
parent
3c3d03e205
commit
9aff644b67
|
@ -2,6 +2,10 @@
|
||||||
let
|
let
|
||||||
cfg = config.const.host.nginx;
|
cfg = config.const.host.nginx;
|
||||||
root = "/storage/hot/share";
|
root = "/storage/hot/share";
|
||||||
|
index = ''
|
||||||
|
autoindex on;
|
||||||
|
charset UTF-8;
|
||||||
|
'';
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
"share.${cfg.domain}" = {
|
"share.${cfg.domain}" = {
|
||||||
|
@ -10,17 +14,11 @@ in
|
||||||
# "~* /$" = {
|
# "~* /$" = {
|
||||||
"= /" = {
|
"= /" = {
|
||||||
inherit root;
|
inherit root;
|
||||||
extraConfig =
|
extraConfig = index + cfg.allowLocal;
|
||||||
cfg.allowLocal
|
|
||||||
+ ''
|
|
||||||
autoindex on;
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
"/" = {
|
"/" = {
|
||||||
inherit root;
|
inherit root;
|
||||||
extraConfig = ''
|
extraConfig = index;
|
||||||
autoindex on;
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue