13 lines
452 B
Plaintext
13 lines
452 B
Plaintext
server {
|
|
listen *:7578 so_keepalive=on;
|
|
listen [::]:7578 so_keepalive=on;
|
|
|
|
location / {
|
|
proxy_pass http://localhost:7591/;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Remote-User $remote_user;
|
|
auth_basic "RedXen CalDAV system";
|
|
auth_basic_user_file /etc/redxen/radicale-httpauth/passwdfile;
|
|
}
|
|
}
|