28 lines
893 B
Plaintext
28 lines
893 B
Plaintext
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||
|
|
# configuration of vaccines-are-safe-and-effective.com / frode klevstul / may 2026
|
||
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||
|
|
|
||
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name
|
||
|
|
vaccines-are-safe-and-effective.com *.vaccines-are-safe-and-effective.com
|
||
|
|
;
|
||
|
|
return 301 https://sc.op.fo/ais;
|
||
|
|
}
|
||
|
|
|
||
|
|
server {
|
||
|
|
listen 443 ssl;
|
||
|
|
listen [::]:443 ssl;
|
||
|
|
http2 on;
|
||
|
|
|
||
|
|
ssl_certificate /etc/nginx/acme.sh/vaccines-are-safe-and-effective.com/fullchain.pem;
|
||
|
|
ssl_certificate_key /etc/nginx/acme.sh/vaccines-are-safe-and-effective.com/key.pem;
|
||
|
|
ssl_trusted_certificate /etc/nginx/acme.sh/vaccines-are-safe-and-effective.com/cert.pem;
|
||
|
|
|
||
|
|
server_name
|
||
|
|
vaccines-are-safe-and-effective.com *.vaccines-are-safe-and-effective.com
|
||
|
|
;
|
||
|
|
|
||
|
|
return 301 https://sc.op.fo/ais;
|
||
|
|
}
|