blob: 8f9e2a0a1f059eee163c767d7fb13983773e132b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name g.* git.*;
include snippets/ssl_http;
include snippets/wellknown;
location / {
proxy_pass http://git;
}
}
|