15 lines
207 B
Text
15 lines
207 B
Text
# git.xyzzy.ee
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name git.xyzzy.ee;
|
|
root /var/xyzzy/html/plugh;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
}
|
|
|