Answer the question
In order to leave comments, you need to log in
Problem with webdav connection on windows 2012?
Good afternoon!
I set up a webdav server on centos using nginx with an extended dav module https://github.com/arut/nginx-dav-ext-module.
The nginx config is the following:
server {
listen 80;
server_name x.x.x.x.;
access_log /var/log/nginx/webdav_access.log main;
location / {
autoindex on;
root /davdir;
client_max_body_size 0;
client_body_temp_path /temp_davdir 1 2;
dav_methods PUT MKCOL COPY MOVE DELETE;
dav_ext_methods PROPFIND OPTIONS;
create_full_put_path on;
charset utf-8;
dav_access user:rw group:rw all:rw;
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question