9 lines
157 B
Plaintext
9 lines
157 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
server_name kennel.hatecomputers.club;
|
||
|
|
||
|
location / {
|
||
|
rewrite ^ https://kennel.hatecomputers.club$request_uri? permanent;
|
||
|
}
|
||
|
}
|