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