1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-05 15:57:23 +01:00

preliminary support for webfinger

It just echos back the subject given to it.
This commit is contained in:
Joshua Tauberer
2014-06-20 01:54:59 +00:00
parent 5faa1cae71
commit 85169dc960
3 changed files with 19 additions and 0 deletions

View File

@@ -39,5 +39,11 @@ server {
client_max_body_size 20M;
}
# Webfinger configuration.
location = /.well-known/webfinger {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/bin/mailinabox-webfinger.php;
fastcgi_pass unix:/tmp/php-fastcgi.www-data.sock;
}
}