nginx-configs/sites-available/piped.conf

17 lines
369 B
Plaintext
Raw Normal View History

2022-08-06 03:45:00 +00:00
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
2022-08-25 10:58:10 +00:00
server_name piped.vern.cc pipedapi.vern.cc pipedproxy.vern.cc;
2022-08-06 03:45:00 +00:00
include snippets/lets-encrypt.conf;
2022-08-25 10:58:10 +00:00
#include snippets/headers.conf;
2022-08-06 03:45:00 +00:00
include common/piped.conf;
}
server {
listen 80;
listen [::]:80;
return 301 https://$host$request_uri;
server_name piped.vern.cc pipedapi.vern.cc pipedproxy.vern.cc;
}