Enabling WebDAV On Fedora 16
Vinh Nguyen
Posted on November 24th, 2011
Here is how I enabled WebDAV on Fedora 16 (before starting, you need to know how to use a terminal/shell and change into root account from terminal/shell): I opened up ports 80 and 443 for the firewall I disabled SELinux Open up the file vi /etc/sysconfig/selinux by typing in the command vi /etc/sysconfig/selinux as root inside a terminal Change the line that says SELINUX=enforcing to SELINUX=disabled Save the /etc/sysconfig/selinux file and get out of vi Reboot the machine I installed Apache Web Server Inside a terminal as root, type in the command yum -y install httpd Edit the file vi /etc/httpd/conf/httpd.conf by typing in the command vi /etc/httpd/conf/httpd.conf inside a terminal as root user Change line #43 to ServerTokens Prod Change line #75 to KeepAlive On…