14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
|
server {
|
||
|
listen 443 ssl;
|
||
|
listen [::]:443 ssl;
|
||
|
server_name {{ dns_name }};
|
||
|
|
||
|
ssl_certificate /etc/letsencrypt/live/{{ dns_name }}/fullchain.pem;
|
||
|
ssl_certificate_key /etc/letsencrypt/live/{{ dns_name }}/privkey.pem;
|
||
|
|
||
|
location / {
|
||
|
uwsgi_pass unix:/run/friwall.socket;
|
||
|
include uwsgi_params;
|
||
|
}
|
||
|
}
|