<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=NGINX_WebDAV</id>
	<title>NGINX WebDAV - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=NGINX_WebDAV"/>
	<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=NGINX_WebDAV&amp;action=history"/>
	<updated>2026-05-14T18:16:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://tech.uvoo.io/index.php?title=NGINX_WebDAV&amp;diff=673&amp;oldid=prev</id>
		<title>Busk: Created page with &quot; webdav that could be running in lxd container ``` location /webdav-busk {     client_max_body_size 500M;     # root                  /data/www;      client_body_temp_path /da...&quot;</title>
		<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=NGINX_WebDAV&amp;diff=673&amp;oldid=prev"/>
		<updated>2020-05-23T02:55:30Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot; webdav that could be running in lxd container ``` location /webdav-busk {     client_max_body_size 500M;     # root                  /data/www;      client_body_temp_path /da...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
webdav that could be running in lxd container&lt;br /&gt;
```&lt;br /&gt;
location /webdav-busk {&lt;br /&gt;
    client_max_body_size 500M;&lt;br /&gt;
    # root                  /data/www;&lt;br /&gt;
&lt;br /&gt;
    client_body_temp_path /data/client_tmp;&lt;br /&gt;
&lt;br /&gt;
    dav_methods PUT DELETE MKCOL COPY MOVE;&lt;br /&gt;
&lt;br /&gt;
    create_full_put_path  on;&lt;br /&gt;
    dav_access            group:rw  all:r;&lt;br /&gt;
    # dav_access            group:rw  all:rw;&lt;br /&gt;
&lt;br /&gt;
    limit_except GET {&lt;br /&gt;
        auth_basic           &amp;quot;Authorized Employees Only&amp;quot;;&lt;br /&gt;
        auth_basic_user_file /etc/nginx/.htpasswd;&lt;br /&gt;
        allow 10.1.1.0/24;&lt;br /&gt;
        allow 127.0.0.0/8;&lt;br /&gt;
        deny  all;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bandwidth throttling&lt;br /&gt;
```&lt;br /&gt;
upstream app {&lt;br /&gt;
    server  host1.example.com max_fails=3 fail_timeout=30s;&lt;br /&gt;
    server  host2.example.com max_fails=3 fail_timeout=30s;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
server {&lt;br /&gt;
    server_name host.example.com.conf;&lt;br /&gt;
    access_log /var/log/nginx/host.example.com.log  main;&lt;br /&gt;
&lt;br /&gt;
    listen 443 ssl;&lt;br /&gt;
    listen [::]:443 ssl;&lt;br /&gt;
    ssl_certificate /etc/pki/tls/certs/nginx-selfsigned.crt;&lt;br /&gt;
    ssl_certificate_key /etc/pki/tls/private/nginx-selfsigned.key;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    location / {&lt;br /&gt;
        limit_rate 500k;&lt;br /&gt;
        proxy_pass http://app;&lt;br /&gt;
        proxy_set_header Host $host;&lt;br /&gt;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;&lt;br /&gt;
        proxy_set_header X-Forwarded-Proto $scheme;&lt;br /&gt;
        proxy_set_header X-Real-IP $remote_addr;&lt;br /&gt;
        proxy_set_header X-NginX-Proxy true;&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
```&lt;/div&gt;</summary>
		<author><name>Busk</name></author>
	</entry>
</feed>