Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions admin_manual/installation/nginx.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -94,6 +94,10 @@ webroot of your nginx installation. In this example it is
#rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json
# last;

# The following rule is only needed for the Social app.
# Uncomment it if you're planning to use this app.
# rewrite ^/.well-known/webfinger /public.php?service=webfinger last;

location = /.well-known/carddav {
return 301 $scheme://$host/remote.php/dav;
}
Expand DownExpand Up@@ -243,6 +247,10 @@ your nginx installation.
#rewrite ^/.well-known/host-meta.json
# /nextcloud/public.php?service=host-meta-json last;

# The following rule is only needed for the Social app.
# Uncomment it if you're planning to use this app.
# rewrite ^/.well-known/webfinger /nextcloud/public.php?service=webfinger last;

location = /.well-known/carddav {
return 301 $scheme://$host/nextcloud/remote.php/dav;
}
Expand Down