docker – Blame information for rev 62
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
62 | office | 1 | server { |
2 | listen @XMLRPC_PORT@; |
||
3 | |||
4 | root /dev/null; |
||
5 | |||
6 | auth_basic "@XMLRPC_AUTHBASIC_STRING@"; |
||
7 | auth_basic_user_file /passwd/rpc.htpasswd; |
||
8 | |||
9 | client_max_body_size @XMLRPC_SIZE_LIMIT@; |
||
10 | |||
11 | location / { |
||
12 | include /etc/nginx/scgi_params; |
||
13 | scgi_pass unix:/var/run/rtorrent/scgi.socket; |
||
14 | } |
||
15 | } |
||
16 | |||
17 | server { |
||
18 | listen 127.0.0.1:@XMLRPC_HEALTH_PORT@; |
||
19 | |||
20 | access_log off; |
||
21 | error_log /dev/null; |
||
22 | |||
23 | root /dev/null; |
||
24 | |||
25 | location / { |
||
26 | allow 127.0.0.1; |
||
27 | deny all; |
||
28 | include /etc/nginx/scgi_params; |
||
29 | scgi_pass unix:/var/run/rtorrent/scgi.socket; |
||
30 | } |
||
31 | } |