Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: WebDav на Windows
- To: nginx-ru@xxxxxxxxx
- Subject: Re: WebDav на Windows
- From: "antarey" <nginx-forum@xxxxxxxx>
- Date: Tue, 15 Oct 2013 07:24:14 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=helium.jlkhosting.com; s=x; h=Date:Sender:From:References:In-Reply-To:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=dUamWkUyXjua19LqwGbxE8BnXLozaf1OtFYXbiNL1tI=; b=QsBnsJWgMFIZD5bZ+h4vk+xPDpRvzMk0tWZsjQmcaV2LgFhpPHnvhwTGVi7QI/KQQ1+ANQWuJnTv/y/nQ0mELlA0zDF6iC3n5Txz3im+ItAjnzJmiFf4q9kTrSsTTT60/HC2a8gaJsbfRGaZ6gEjHdfjxi3DuU8iH3hbcJsiTJ4=;
- In-reply-to: <CAL-L5YCdRrcqoHn9GkzJkm8VGeMkwa8iUcXKoYpZY1ZF=_FX8g@mail.gmail.com>
- References: <CAL-L5YCdRrcqoHn9GkzJkm8VGeMkwa8iUcXKoYpZY1ZF=_FX8g@mail.gmail.com>
а как его прикрутить на винде?
./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
> <nginx-forum@xxxxxxxx>написал:
>
> > Здравствуйте. Помогите поднять 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
> > nginx-ru@xxxxxxxxx
> > http://mailman.nginx.org/mailman/listinfo/nginx-ru
>
>
>
>
> --
> Best Regards,
> Vadim Lazovskiy
> _______________________________________________
> nginx-ru mailing list
> nginx-ru@xxxxxxxxx
> 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
nginx-ru@xxxxxxxxx
http://mailman.nginx.org/mailman/listinfo/nginx-ru
|