mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 18:31:02 +01:00
32 lines
805 B
Plaintext
32 lines
805 B
Plaintext
add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;";
|
|
fastcgi_send_timeout 120s;
|
|
fastcgi_read_timeout 120s;
|
|
proxy_connect_timeout 120s;
|
|
proxy_send_timeout 120s;
|
|
proxy_read_timeout 120s;
|
|
|
|
location = /.well-known/host-meta {
|
|
return 301 $scheme://$http_host/public.php?service=host-meta;
|
|
}
|
|
|
|
location = /.well-known/host-meta.json {
|
|
return 301 $scheme://$http_host/public.php?service=host-meta-json;
|
|
}
|
|
|
|
location = /.well-known/carddav {
|
|
return 301 $scheme://$http_host/remote.php/dav;
|
|
}
|
|
|
|
location = /.well-known/caldav {
|
|
return 301 $scheme://$http_host/remote.php/dav;
|
|
}
|
|
|
|
location = /.well-known/webfinger{
|
|
return 301 $scheme://$http_host/index.php/.well-known/webfinger;
|
|
}
|
|
|
|
location = /.well-known/nodeinfo{
|
|
return 301 $scheme://$http_host/index.php/.well-known/nodeinfo;
|
|
}
|
|
}
|