1
0
forked from x/ContextOS
2025-02-14 12:27:40 +08:00

13 lines
228 B
Plaintext

server {
listen 443 ssl;
server_name shylinux.com;
include portal/shylinux/location.conf;
}
server {
listen 80;
server_name shylinux.com;
location / {
return 307 https://$server_name$request_uri;
}
}