Files
srv-pub/cfg/ngx/obeyauthority.com.conf
committer@tuxwarrior 9bf433a562 + obeyauthority.com
2026-05-07 05:43:57 -05:00

28 lines
749 B
Plaintext

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# configuration of obeyauthority.com / frode klevstul / may 2026
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
server {
listen 80;
server_name
obeyauthority.com *.obeyauthority.com
;
return 301 https://sc.op.fo/ose;
}
server {
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
ssl_certificate /etc/nginx/acme.sh/obeyauthority.com/fullchain.pem;
ssl_certificate_key /etc/nginx/acme.sh/obeyauthority.com/key.pem;
ssl_trusted_certificate /etc/nginx/acme.sh/obeyauthority.com/cert.pem;
server_name
obeyauthority.com *.obeyauthority.com
;
return 301 https://sc.op.fo/ose;
}