blob: 71d6db84170d143b8d15397a7084061ff9c06409 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
server {
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
http2 on;
ssl_certificate ${rspamd_tls_cert};
ssl_certificate_key ${rspamd_tls_key};
add_header Strict-Transport-Security "max-age=63072000" always;
location / {
proxy_http_version 1.1;
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
proxy_pass http://127.0.0.1:${rspamd_port}/;
}
}
|