а как его прикрутить на винде? ./configure --with-http_dav_module --add-module=<path-to-this-module> ????
Vadim Lazovskiy Wrote: ------------------------------------------------------- > Здравствуйте. > > На данный момент Nginx поддерживает не все методы необходимые для > полноценной работы WebDav. > Но есть 3rd party модуль: https://github.com/arut/nginx-dav-ext-module > реализующий > методы OPTIONS и PROPFIND > > > 15 октября 2013 г., 14:45 пользователь antarey > <[email protected]>написал: > > > Здравствуйте. Помогите поднять webdav с помощью nginx на Windows. > > Скачал nginx/Windows-1.5.6 > > Согласно инстукций настроил вебдав > > вот конф > > > > #user nobody; > > worker_processes 1; > > > > error_log logs/error.log; > > #error_log logs/error.log notice; > > #error_log logs/error.log info; > > > > #pid logs/nginx.pid; > > > > > > events { > > worker_connections 1024; > > } > > > > > > http { > > include mime.types; > > default_type application/octet-stream; > > > > #log_format main '$remote_addr - $remote_user [$time_local] > > "$request" > > ' > > # '$status $body_bytes_sent "$http_referer" ' > > # '"$http_user_agent" "$http_x_forwarded_for"'; > > > > #access_log logs/access.log main; > > > > sendfile on; > > #tcp_nopush on; > > > > #keepalive_timeout 0; > > keepalive_timeout 65; > > > > #gzip on; > > > > server { > > listen 8080; > > server_name webdav; > > > > charset utf-8; > > > > #access_log logs/host.access.log main; > > > > location / { > > auth_basic "Закритий сайт"; > > auth_basic_user_file ./conf/htpasswd; > > root html; > > client_body_temp_path ./temp/client_body_temp; > > dav_methods PUT DELETE MKCOL COPY MOVE; > > create_full_put_path on; > > dav_access user:rw group:rw all:rw; > > > > limit_except GET { > > allow 127.0.0.1; > > deny all; > > } > > # root html; > > # index index.html index.htm; > > > > } > > > > #error_page 404 /404.html; > > > > # redirect server error pages to the static page /50x.html > > # > > ## error_page 500 502 503 504 /50x.html; > > ## location = /50x.html { > > ## root html; > > ## } > > > > Если удаляю index.htm получаю 403 ошибку. Подключить диск net use > * > > 127.0.0.1:8080 не могу - сетевой ресурс не доступен > > Что я делаю не так??? или надо перекомпилировать ?? - если да то > как сие > > реализовать в винде? > > И второй вопрос - как раздавать конкретным пользователям конкретные > права > > на > > конкретные папки? > > > > Posted at Nginx Forum: > > http://forum.nginx.org/read.php?21,243701,243701#msg-243701 > > > > _______________________________________________ > > nginx-ru mailing list > > [email protected] > > http://mailman.nginx.org/mailman/listinfo/nginx-ru > > > > > -- > Best Regards, > Vadim Lazovskiy > _______________________________________________ > nginx-ru mailing list > [email protected] > http://mailman.nginx.org/mailman/listinfo/nginx-ru Posted at Nginx Forum: http://forum.nginx.org/read.php?21,243701,243704#msg-243704 _______________________________________________ nginx-ru mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx-ru
