forked from x/ContextOS
13 lines
228 B
Plaintext
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;
|
|
}
|
|
}
|