Project:
Varnish
Code Location:
git://git.varnish-cache.org/varnish-cachemaster
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Matches ALL Makefile and Makefile.in occurrences Makefile Makefile.in # ... .deps/ .libs/ *.o *.lo *.la *~ # Various auto-tools artifacts /aclocal.m4 /autom4te.cache/ /compile /config.guess /config.h /config.h.in /config.h.in~ /config.log /config.status /config.sub /configure /configure.lineno /depcomp /install-sh /libtool /ltmain.sh /m4/libtool.m4 /m4/ltoptions.m4 /m4/ltsugar.m4 /m4/ltversion.m4 /m4/lt~obsolete.m4 /missing /stamp-h1 /varnishapi.pc TAGS cscope.*out # Default vcl made from bin/varnishd/default.vcl /bin/varnishd/default_vcl.h /etc/default.vcl # Various auto-generated code snippets /include/vcl.h /include/tbl/vcl_returns.h /include/vrt_obj.h /include/tbl/vrt_stv_var.h /include/tbl/vcc_types.h /include/vcs_version.h /lib/libvcl/vcc_fixed_token.c /lib/libvcl/vcc_obj.c /lib/libvcl/vcc_token_defs.h /lib/libvmod_std/vcc_if.c /lib/libvmod_std/vcc_if.h # Man-files and binaries /man/vsc2rst /man/vcl.7 /man/varnish-cli.7 /man/varnish-counters.7 /bin/varnishadm/varnishadm /bin/varnishadm/varnishadm.1 /bin/varnishd/varnishd /bin/varnishd/varnishd.1 /bin/varnishhist/varnishhist /bin/varnishhist/varnishhist.1 /bin/varnishlog/varnishlog /bin/varnishlog/varnishlog.1 /bin/varnishncsa/varnishncsa /bin/varnishncsa/varnishncsa.1 /bin/varnishreplay/varnishreplay /bin/varnishreplay/varnishreplay.1 /bin/varnishstat/varnishstat /bin/varnishstat/varnishstat.1 /bin/varnishtest/varnishtest /bin/varnishtest/varnishtest.1 /bin/varnishtop/varnishtop /bin/varnishtop/varnishtop.1 /lib/libvmod_std/vmod_std.3 # Doc-stuff generated from xml /doc/*.html /doc/sphinx/=build/ /doc/sphinx/conf.py # NetBeans insists on this /nbproject/private/ # Test droppings bin/varnishtest/tests/*.log bin/varnishtest/tests/*.log-t bin/varnishtest/test-suite.log
