10 lines
331 B
Plaintext
10 lines
331 B
Plaintext
|
location /rspamd {
|
||
|
proxy_pass http://127.0.0.1:11334/;
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
|
||
|
# websocket
|
||
|
proxy_set_header Upgrade $http_upgrade;
|
||
|
proxy_set_header Connection "upgrade";
|
||
|
}
|