32 lines
646 B
Plaintext
32 lines
646 B
Plaintext
|
|
server_tokens off;
|
||
|
|
proxy_hide_header X-Powered-By;
|
||
|
|
|
||
|
|
location = /.well-known/webfinger {
|
||
|
|
return 301 $scheme://$host/index.php/.well-known/webfinger;
|
||
|
|
}
|
||
|
|
|
||
|
|
location = /.well-known/nodeinfo {
|
||
|
|
return 301 $scheme://$host/index.php/.well-known/nodeinfo;
|
||
|
|
}
|
||
|
|
|
||
|
|
location = /.well-known/carddav {
|
||
|
|
return 301 $scheme://$host/remote.php/dav;
|
||
|
|
}
|
||
|
|
|
||
|
|
location = /.well-known/caldav {
|
||
|
|
return 301 $scheme://$host/remote.php/dav;
|
||
|
|
}
|
||
|
|
|
||
|
|
location = /robots.txt {
|
||
|
|
allow all;
|
||
|
|
log_not_found off;
|
||
|
|
access_log off;
|
||
|
|
}
|
||
|
|
|
||
|
|
location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
|
||
|
|
deny all;
|
||
|
|
}
|
||
|
|
|
||
|
|
location ~ ^/(?:autotest|occ|issue|indie|db_|console) {
|
||
|
|
deny all;
|
||
|
|
}
|