From e3dd53e22769f3bd03f961f091d3a38275eebecc Mon Sep 17 00:00:00 2001 From: Alex Claman Date: Thu, 31 Oct 2024 13:36:34 -0400 Subject: [PATCH] Fix typos; separate out testing commands from successful outputs/results --- Server-Diagnostics---Troubleshooting.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/Server-Diagnostics---Troubleshooting.md b/Server-Diagnostics---Troubleshooting.md index f549f52..38d5aae 100644 --- a/Server-Diagnostics---Troubleshooting.md +++ b/Server-Diagnostics---Troubleshooting.md @@ -71,6 +71,11 @@ Direct connection tests, for tests via reverse proxy see [Reverse-Proxy-Diagnost ``` curl http://localhost:5232/ +``` + +Successful result: + +``` Redirected to /.web ``` @@ -89,19 +94,24 @@ Successful result depends on auth and permission - config option: `type` + `file` -### Without autentication +### Without authentication ``` curl -s --request PROPFIND http://localhost:5232/ Access to the requested resource forbidden. ``` -### With autentication +### With authentication #### Depth: 0 ``` curl -s --header 'Depth: 0' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/ | xmllint --format - | grep "" +``` + +Successful result: + +``` / / /USER1/ @@ -111,6 +121,11 @@ curl -s --header 'Depth: 0' --request PROPFIND -u USER1:USERPASS1 http://localho ``` curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/ | xmllint --format - | grep "" +``` + +Successful result: + +``` / /USER1/ ``` @@ -121,6 +136,11 @@ curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localho ``` curl -s --header 'Depth: 1' --request PROPFIND -u USER1:USERPASS1 http://localhost:5232/USER1/ | xmllint --format - | grep -E "(^ |displayname|C:calendar-description)" +``` + +Successful result: + +``` /USER1/ /USER1/mycalendar1/ MyCalendar1