docker – Blame information for rev 62
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
62 | office | 1 | server { |
2 | listen @WEBDAV_PORT@; |
||
3 | |||
4 | root /downloads/complete; |
||
5 | |||
6 | auth_basic "@WEBDAV_AUTHBASIC_STRING@"; |
||
7 | auth_basic_user_file /passwd/webdav.htpasswd; |
||
8 | |||
9 | client_max_body_size 0; |
||
10 | create_full_put_path on; |
||
11 | |||
12 | location / { |
||
13 | autoindex on; |
||
14 | dav_ext_methods PROPFIND OPTIONS; |
||
15 | dav_access user:r group:r all:r; |
||
16 | } |
||
17 | } |
||
18 | |||
19 | server { |
||
20 | listen 127.0.0.1:@WEBDAV_HEALTH_PORT@; |
||
21 | |||
22 | root /downloads/complete; |
||
23 | |||
24 | access_log off; |
||
25 | error_log /dev/null; |
||
26 | |||
27 | client_max_body_size 0; |
||
28 | create_full_put_path on; |
||
29 | |||
30 | location / { |
||
31 | allow 127.0.0.1; |
||
32 | deny all; |
||
33 | autoindex on; |
||
34 | dav_ext_methods PROPFIND OPTIONS; |
||
35 | dav_access user:r group:r all:r; |
||
36 | } |
||
37 | } |