17 lines
212 B
Plaintext
17 lines
212 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
|
|
http2 on;
|
|
|
|
location / {
|
|
return 301 /repo/;
|
|
}
|
|
|
|
location /repo/ {
|
|
root /repo;
|
|
index index.html;
|
|
}
|
|
}
|
|
|