Skip to content

Instantly share code, notes, and snippets.

@namuan
Last active November 11, 2024 18:20
Show Gist options
  • Save namuan/484fc4557dcced73d77044423695cac5 to your computer and use it in GitHub Desktop.
Save namuan/484fc4557dcced73d77044423695cac5 to your computer and use it in GitHub Desktop.
Setting up WebDAV server on Mac

Make sure that Mac Firewall allows incoming connection

cd <dir>
# Start WebDAV server
sudo wfsctl start
# Check status
sudo wfsctl start
# Share current directory
sudo wfsctl share $PWD
# Now you should be able to connect to the WebDAV server given the IP address of your machine and Login details
# To stop sharing
sudo wfsctl unshare $PWD
# Stop WebDAV server
sudo wfsctl stop
# Disable incoming connections in Security settings

More Details

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment